Skip to content

Commit 04ddf2f

Browse files
committed
Temporary fix for error pop-up window for IPP2.0+ attributes
1 parent f67dd0a commit 04ddf2f

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

NEWS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
- Fix TypeError raised by debugprint call (https://github.com/zdohnal/system-config-printer/pull/121)
1515
- dbus: remove deprecated at_console statement (https://github.com/zdohnal/system-config-printer/pull/123)
1616
- fixed several memory leaks reported by Coverity scan
17+
- temporary fix for error pop up message for IPP2.0+ attributes (https://github.com/zdohnal/system-config-printer/issues/122)
1718

1819
1.5.10 changes
1920
--------------

printerproperties.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1430,12 +1430,7 @@ def load (self, name, host=None, encryption=None, parent=None):
14301430
except:
14311431
nonfatalException()
14321432
option_editable = False
1433-
show_error_dialog (_("Error"),
1434-
_("Option '%s' has value '%s' and "
1435-
"cannot be edited.") %
1436-
(option.name,
1437-
value),
1438-
self.parent)
1433+
debugprint ("Option '%s' has value '%s' and cannot be edited." % (option.name, value))
14391434
option.widget.set_sensitive (option_editable)
14401435
if not editable:
14411436
option.button.set_sensitive (False)

0 commit comments

Comments
 (0)