summaryrefslogtreecommitdiffstats
path: root/iw/package_gui.py
diff options
context:
space:
mode:
authorMatt Wilson <msw@redhat.com>2002-07-26 16:07:41 +0000
committerMatt Wilson <msw@redhat.com>2002-07-26 16:07:41 +0000
commitfe63ceb8aae9c68a379d5783bfb2b20eb87d08cb (patch)
treecbaae15c568665d7c4ed6c455124a730ba588060 /iw/package_gui.py
parent115107abb1e48950db95f3b0f26784a4c56352e2 (diff)
downloadanaconda-fe63ceb8aae9c68a379d5783bfb2b20eb87d08cb.tar.gz
anaconda-fe63ceb8aae9c68a379d5783bfb2b20eb87d08cb.tar.xz
anaconda-fe63ceb8aae9c68a379d5783bfb2b20eb87d08cb.zip
make it a cursor, not an icon. automatically switch to wait cursor on wait windows and progress windows
Diffstat (limited to 'iw/package_gui.py')
-rw-r--r--iw/package_gui.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/iw/package_gui.py b/iw/package_gui.py
index 8e0b6b559..528d5830d 100644
--- a/iw/package_gui.py
+++ b/iw/package_gui.py
@@ -116,7 +116,7 @@ class IndividualPackageSelectionWindow (InstallWindow):
SHOW_WATCH_MIN = 200
if len(packages) > SHOW_WATCH_MIN:
cw = self.ics.getICW()
- cw.busyIconPush()
+ cw.busyCursorPush()
for header in packages:
name = header[rpm.RPMTAG_NAME]
@@ -137,7 +137,7 @@ class IndividualPackageSelectionWindow (InstallWindow):
self.packageList.store.set_sort_column_id(self.sort_id, not self.sort_order)
self.packageList.store.set_sort_column_id(self.sort_id, self.sort_order)
if len(packages) > SHOW_WATCH_MIN:
- cw.busyIconPop()
+ cw.busyCursorPop()
def select_group(self, selection):
(model, iter) = selection.get_selected()
@@ -550,7 +550,7 @@ class PackageSelectionWindow (InstallWindow):
if self.ignoreComponentToggleEvents:
return
- cw.busyIconPush()
+ cw.busyCursorPush()
# turn on all the comps we selected
if newstate:
if ebutton:
@@ -613,7 +613,7 @@ class PackageSelectionWindow (InstallWindow):
# after all this we need to recompute total size
self.setSize()
- cw.busyIconPop()
+ cw.busyCursorPop()
def pkgGroupMemberToggled(self, widget, data):
(comp, sizeLabel, pkg) = data