Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions usr/lib/linuxmint/mintinstall/mintinstall.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@

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

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

Expand Down Expand Up @@ -1205,9 +1205,10 @@
dots_frame.add(nav_container)

frame_container = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL,
halign=Gtk.Align.CENTER,
halign=Gtk.Align.END,
valign=Gtk.Align.END,
margin_bottom=5)
margin_bottom=7,
margin_right=8)
frame_container.pack_start(dots_frame, True, False, 0)
overlay.add_overlay(frame_container)

Expand Down Expand Up @@ -2239,7 +2240,7 @@
# then the app is uninstalled generally (usually they're -origin remotes, only added
# when a .flatpakref file is installed.) However, their addition/removal, purposely,
# will not trigger a rebuild of the cache, so we don't want to be caught showing an
# empty category as a reuslt.

Check failure on line 2243 in usr/lib/linuxmint/mintinstall/mintinstall.py

View workflow job for this annotation

GitHub Actions / build / build (mint22, linuxmintd/mint22-amd64, Mint 22, true) / Mint 22

reuslt ==> result
if remote_info.noenumerate:
continue

Expand Down
Loading