Bug 215527

Summary: Should set busy cursor for 'change device' or 'change PPD'
Product: [Fedora] Fedora Reporter: Tim Waugh <twaugh>
Component: system-config-printerAssignee: Tim Waugh <twaugh>
Status: CLOSED ERRATA QA Contact:
Severity: medium Docs Contact:
Priority: medium    
Version: 6   
Target Milestone: ---   
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: 0.7.40-1.fc6 Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2006-11-30 12:52:41 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 207681, 215528    

Description Tim Waugh 2006-11-14 15:37:55 UTC
Description of problem:
Should set busy cursor for 'change device' or 'change PPD'.

Version-Release number of selected component (if applicable):
0.7.38-1

How reproducible:
100%

Steps to Reproduce:
1. Click 'change PPD' or 'change device'
  
Cursor should go busy.

Fix is:
--- system-config-printer.py    14 Nov 2006 12:15:31 -0000      1.127
+++ system-config-printer.py    14 Nov 2006 15:31:42 -0000
@@ -1550,2 +1550,3 @@
     def on_btnSelectDevice_clicked(self, button):
+        self.busy (self.MainWindow)
         self.loadFoomatic()
@@ -1559,2 +1560,3 @@
         self.initNewPrinterWindow()
+        self.ready (self.MainWindow)
 
@@ -1562,2 +1564,3 @@
     def on_btnChangePPD_clicked(self, button):
+        self.busy (self.MainWindow)
         self.loadFoomatic()
@@ -1597,3 +1600,3 @@
         self.initNewPrinterWindow()
-        
+        self.ready (self.MainWindow)