diff --git a/bin/pytop-0-0-1-x64.deb b/bin/pytop-0-0-1-x64.deb index b725096..8ff204a 100644 Binary files a/bin/pytop-0-0-1-x64.deb and b/bin/pytop-0-0-1-x64.deb differ diff --git a/images/pic2.png b/images/pic2.png index f0f5cd3..e54e5c0 100644 Binary files a/images/pic2.png and b/images/pic2.png differ diff --git a/src/Pytop/resources/Main_Window.glade b/src/Pytop/resources/Main_Window.glade index a8631ef..f0222ae 100644 --- a/src/Pytop/resources/Main_Window.glade +++ b/src/Pytop/resources/Main_Window.glade @@ -563,10 +563,35 @@ True False - + True False vertical + True + + + + + + + + + + + + + + + + + + + + + + + + @@ -574,6 +599,9 @@ + True diff --git a/src/Pytop/resources/stylesheet.css b/src/Pytop/resources/stylesheet.css index 9addcfa..d8263f5 100644 --- a/src/Pytop/resources/stylesheet.css +++ b/src/Pytop/resources/stylesheet.css @@ -1,3 +1,11 @@ +/* Menu css properties */ +.menu_scroller label { + font-size: 120%; +} + + +/* Grid css properties */ + viewport, treeview, treeview > header, diff --git a/src/Pytop/signal_classes/mixins/MainMenuMixin.py b/src/Pytop/signal_classes/mixins/MainMenuMixin.py index 9110b8c..af2820f 100644 --- a/src/Pytop/signal_classes/mixins/MainMenuMixin.py +++ b/src/Pytop/signal_classes/mixins/MainMenuMixin.py @@ -80,6 +80,18 @@ class MainMenuMixin: button = gtk.Button(label=title) button.set_image(icon) button.connect("clicked", self.executeProgram) + + children = button.get_children() + alignment1 = children[0] + box = alignment1.get_children()[0] + label = box.get_children()[1] + + alignment1.set(0.0, 0.0, 0.0, 0.0) + label.set_halign(1) + label.set_line_wrap(True) + label.set_max_width_chars(38) + label.set_size_request(640, 64) + button.show_all() glib.idle_add(widget.add, (button))