Skip to content

Commit

Permalink
feat(main, preview): reduce extra paddings in UI
Browse files Browse the repository at this point in the history
  • Loading branch information
actionless committed Dec 22, 2018
1 parent 8b80fae commit 9fdc501
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 1 addition & 2 deletions oomox_gui/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -521,11 +521,10 @@ def _init_window(self):
self.set_wmclass("oomox", "Oomox")
self.connect("delete-event", self._on_quit)
self.set_default_size(500, 300)
self.set_border_width(6)

self._init_headerbar()

self.box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=6)
self.box = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=2)
self.add(self.box)

def _init_actions(self):
Expand Down
1 change: 1 addition & 0 deletions oomox_gui/preview.py
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,7 @@ class ThemePreview(Gtk.Grid):

def __init__(self):
super().__init__(row_spacing=6, column_spacing=6)
self.set_border_width(6)
self.css_providers = CssProviders()
self.init_widgets()

Expand Down

0 comments on commit 9fdc501

Please sign in to comment.