aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/extras
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/extras')
-rw-r--r--klippy/extras/display/menu.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/klippy/extras/display/menu.py b/klippy/extras/display/menu.py
index a8c74341..a930f073 100644
--- a/klippy/extras/display/menu.py
+++ b/klippy/extras/display/menu.py
@@ -780,7 +780,10 @@ class MenuVSDCard(MenuList):
self.append_item(MenuCommand(self._manager, {
'name': '%s' % str(fname),
'cursor': '+',
- 'gcode': "\n".join(gcode)
+ 'gcode': "\n".join(gcode),
+ 'scroll': True,
+ # mind the cursor size in width
+ 'width': (self._manager.cols-1)
}))
def populate_items(self):