Skip to content

Commit

Permalink
fix #226
Browse files Browse the repository at this point in the history
  • Loading branch information
nwg-piotr committed May 22, 2023
1 parent f4638c5 commit d962446
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nwg_panel/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ def build_common_settings_window():

frame = Gtk.Frame()
frame.set_label(" nwg-panel: Common settings ")
frame.set_label_align(0.5)
frame.set_label_align(0.5, 0.5)
vbox.pack_start(frame, True, True, 6)

grid = Gtk.Grid()
Expand Down Expand Up @@ -3784,7 +3784,7 @@ def __init__(self, panel, config, file):
self.grid = Gtk.Grid()
self.grid.set_column_spacing(6)
self.grid.set_row_spacing(6)
self.set_label_align(0.5)
self.set_label_align(0.5, 0.5)
self.grid.set_property("margin", 6)
self.add(self.grid)
check_key(self.settings, "custom-items", [])
Expand Down Expand Up @@ -3943,7 +3943,7 @@ def __init__(self, panel, config, file):
self.grid = Gtk.Grid()
self.grid.set_column_spacing(10)
self.grid.set_row_spacing(10)
self.set_label_align(0.5)
self.set_label_align(0.5, 0.5)
self.grid.set_property("margin", 6)
self.add(self.grid)
check_key(self.settings, "menu", {})
Expand Down

0 comments on commit d962446

Please sign in to comment.