diff options
Diffstat (limited to 'portato/gui/windows/main.py')
-rw-r--r-- | portato/gui/windows/main.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py index 1b67747..c99790c 100644 --- a/portato/gui/windows/main.py +++ b/portato/gui/windows/main.py @@ -50,7 +50,7 @@ from .about import AboutWindow from .plugin import PluginWindow from .preference import PreferenceWindow from .search import SearchWindow -from .update import UpdateWindow +from .update import UpdateWindow, WorldListWindow class PackageTable: """A window with data about a specfic package.""" @@ -1624,6 +1624,13 @@ class MainWindow (Window): GtkThread(name="Show Updates Thread", target = __update).start() return True + def cb_show_world_clicked (self, *args): + """ + Show the list of world packages. + """ + WorldListWindow(self.window, system.find_packages(pkgSet = "world"), self.queue, self.jump_to) + return True + def cb_show_installed_toggled (self, *args): """ Toggle the "show only installed" option. |