Skip to content

Commit

Permalink
close dialog: Fix a vertical spacing issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
mtwebster committed Jun 10, 2022
1 parent 2e4bdc0 commit 9dbfc05
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions files/usr/bin/cinnamon-close-dialog
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,12 @@ class CloseDialog(XApp.GtkWindow):
self.set_default_size(300, -1)
self.set_skip_taskbar_hint(True)

mainbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL,
margin_top=10)
mainbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
self.add(mainbox)

content_box = Gtk.Box(orientation=Gtk.Orientation.VERTICAL,
halign=Gtk.Align.CENTER,
border_width=10)
margin_left=10, margin_right=10)
mainbox.pack_start(content_box, True, False, 0)

image = Gtk.Image(icon_name="window-close-symbolic", pixel_size=48)
Expand Down

0 comments on commit 9dbfc05

Please sign in to comment.