Skip to content

Commit e8a768c

Browse files
authored
Place banner buttons on the right side. (#469)
1 parent e3d27c9 commit e8a768c

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

usr/lib/linuxmint/mintinstall/mintinstall.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ def __init__(self, pkginfo, installer, name, background, color, is_flatpak, app_
371371

372372
image = Gtk.Image.new_from_file(self.image_uri)
373373

374-
vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=8, margin_bottom=17, halign=Gtk.Align.START)
374+
vbox = Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=8, halign=Gtk.Align.START)
375375
vbox.get_style_context().add_provider(style_provider, Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION)
376376
vbox.set_border_width(6)
377377

@@ -1205,9 +1205,10 @@ def load_banner(self):
12051205
dots_frame.add(nav_container)
12061206

12071207
frame_container = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL,
1208-
halign=Gtk.Align.CENTER,
1208+
halign=Gtk.Align.END,
12091209
valign=Gtk.Align.END,
1210-
margin_bottom=5)
1210+
margin_bottom=7,
1211+
margin_right=8)
12111212
frame_container.pack_start(dots_frame, True, False, 0)
12121213
overlay.add_overlay(frame_container)
12131214

0 commit comments

Comments
 (0)