diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2009-11-05 13:17:15 +0100 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2009-11-05 13:17:15 +0100 |
commit | d78214739540fa64012fbc03f1e912edda07c53d (patch) | |
tree | fd39bf8ea0162005958f2e211c6947ae1ff88c42 /portato/gui/windows/main.py | |
parent | 4a067c072e3eaa65cb434307ea4e9280d3af9b68 (diff) | |
download | portato-d78214739540fa64012fbc03f1e912edda07c53d.tar.gz portato-d78214739540fa64012fbc03f1e912edda07c53d.tar.bz2 portato-d78214739540fa64012fbc03f1e912edda07c53d.zip |
Better slot handling in packages.
Diffstat (limited to 'portato/gui/windows/main.py')
-rw-r--r-- | portato/gui/windows/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/portato/gui/windows/main.py b/portato/gui/windows/main.py index 5a149f8..ca88b04 100644 --- a/portato/gui/windows/main.py +++ b/portato/gui/windows/main.py @@ -768,7 +768,7 @@ class MainWindow (Window): # to not query the package with info, we do not need if self.cfg.get_boolean("showSlots", "GUI"): def get_slot(pkg): - return pkg.get_package_settings("SLOT") + return pkg.get_slot() self.slotcol.set_visible(True) |