diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-03-03 21:09:52 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-03-08 17:38:24 -0400 |
commit | d39c4fe62853536b3cafd4129ef470b682194474 (patch) | |
tree | 291c8d124a8102038dcf794d8c2a903c00708538 /klippy/extras/display/menu.py | |
parent | 2cf03ffa2337f4fea93e9b2dbb0b78d62e887625 (diff) | |
download | kutter-d39c4fe62853536b3cafd4129ef470b682194474.tar.gz kutter-d39c4fe62853536b3cafd4129ef470b682194474.tar.xz kutter-d39c4fe62853536b3cafd4129ef470b682194474.zip |
menu: Disable support for "deck" and "card" menu items
Disable support for customizing the main lcd display content via the
menu system. Advise users to use the new display_data config sections
as a replacement.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/extras/display/menu.py')
-rw-r--r-- | klippy/extras/display/menu.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/extras/display/menu.py b/klippy/extras/display/menu.py index c7ac05c1..139989c9 100644 --- a/klippy/extras/display/menu.py +++ b/klippy/extras/display/menu.py @@ -957,8 +957,8 @@ menu_items = { 'input': MenuInput, 'list': MenuList, 'vsdcard': MenuVSDCard, - 'deck': MenuDeck, - 'card': MenuCard + #'deck': MenuDeck, + #'card': MenuCard } MENU_UPDATE_DELAY = .100 |