Updated Key options, layout

This commit is contained in:
2022-09-16 19:36:55 -05:00
parent 0a2e258766
commit 2366e524a7
4 changed files with 25 additions and 12 deletions

View File

@@ -6,7 +6,7 @@ gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
# Application imports
from ..widgets.defined_keys import Del_Key, Ctrl_Key, Shift_Key, Alt_Key, PrtSc_Key, Up_Key, Down_Key, Left_Key, Right_Key
from ..widgets.defined_keys import Tab_Key, Del_Key, Ctrl_Key, Shift_Key, Alt_Key, PrtSc_Key, Up_Key, Down_Key, Left_Key, Right_Key
@@ -17,7 +17,7 @@ class Button_Box(Gtk.ButtonBox):
def __init__(self):
super(Button_Box, self).__init__()
for key in [Del_Key(), Ctrl_Key(), Shift_Key(), Alt_Key(), PrtSc_Key()]:
for key in [Tab_Key(), Del_Key(), Ctrl_Key(), Shift_Key(), Alt_Key(), PrtSc_Key()]:
self.add(key)
class List_Box(Gtk.ScrolledWindow):

View File

@@ -6,7 +6,7 @@ gi.require_version('Gtk', '3.0')
from gi.repository import Gtk
# Application imports
from ..widgets.defined_keys import Symbols_Key, CAPS_Key
from ..widgets.defined_keys import Esc_Key, Symbols_Key, CAPS_Key
@@ -19,7 +19,7 @@ class Left_Column(Gtk.Box):
self.setup_styling()
for key in [Symbols_Key(), CAPS_Key()]:
for key in [Symbols_Key(), Esc_Key(), CAPS_Key()]:
self.add(key)
self.show_all()