Skip to content

Commit

Permalink
Rearrange to display the add-in gallery first
Browse files Browse the repository at this point in the history
Fixes: 2047277
  • Loading branch information
cameronwhite committed Dec 23, 2023
1 parent d34c803 commit a9fbfe6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Pinta.Gui.Addins/AddinManagerDialog.cs
Original file line number Diff line number Diff line change
Expand Up @@ -56,12 +56,12 @@ public AddinManagerDialog (Gtk.Window parent, SetupService service)
content.Append (toast_overlay);
Content = content;

gallery_list = new AddinListView ();
view_stack.AddTitledWithIcon (gallery_list, null, Translations.GetString ("Gallery"), StandardIcons.SystemSoftwareInstall);
installed_list = new AddinListView ();
view_stack.AddTitledWithIcon (installed_list, null, Translations.GetString ("Installed"), StandardIcons.ApplicationAddon);
updates_list = new AddinListView ();
view_stack.AddTitledWithIcon (updates_list, "updates", Translations.GetString ("Updates"), StandardIcons.SoftwareUpdateAvailable);
gallery_list = new AddinListView ();
view_stack.AddTitledWithIcon (gallery_list, null, Translations.GetString ("Gallery"), StandardIcons.SystemSoftwareInstall);

installed_list.OnAddinChanged += (_, _) => LoadAll ();
updates_list.OnAddinChanged += (_, _) => LoadAll ();
Expand Down

0 comments on commit a9fbfe6

Please sign in to comment.