diff --git a/README.md b/README.md index 3d6795d..8010991 100644 --- a/README.md +++ b/README.md @@ -5,4 +5,5 @@ An onscreen keyboard for the mouse.
  • Get save and execute of custom commands working.
  • # Images -![1 GUI of the keyboard. ](images/pic1.png) +![1 GUI of the alphabet. ](images/pic1.png) +![2 GUI of the symbols. ](images/pic2.png) diff --git a/images/pic1.png b/images/pic1.png index f737500..30f945c 100644 Binary files a/images/pic1.png and b/images/pic1.png differ diff --git a/images/pic2.png b/images/pic2.png new file mode 100644 index 0000000..d921d40 Binary files /dev/null and b/images/pic2.png differ diff --git a/src/core/columns/controls_column.py b/src/core/columns/controls_column.py index 1c8d97c..129e409 100644 --- a/src/core/columns/controls_column.py +++ b/src/core/columns/controls_column.py @@ -26,11 +26,14 @@ class List_Box(Gtk.ScrolledWindow): def __init__(self): super(List_Box, self).__init__() + self.setup_styling() tree, store = self.create_treeview() self.add(tree) self.set_size_request(360, 240) + def setup_styling(self): + self.set_vexpand(True) def create_treeview(self): tree = Gtk.TreeView() @@ -76,7 +79,6 @@ class Grid_Box(Gtk.Grid): self.attach(Right_Key(), 2, 1, 1, 1) def setup_styling(self): - self.set_hexpand(True) self.set_margin_top(5) self.set_margin_bottom(5) self.set_column_homogeneous(True)