Fix updateStatusBar wrong args order
This commit is contained in:
parent
caf3a3fbbc
commit
cb0710e454
|
@ -4099,7 +4099,7 @@ class MyForm(settingsmixin.SMainWindow):
|
||||||
|
|
||||||
def updateStatusBar(self, data):
|
def updateStatusBar(self, data):
|
||||||
try:
|
try:
|
||||||
option, message = data
|
message, option = data
|
||||||
except ValueError:
|
except ValueError:
|
||||||
option = 0
|
option = 0
|
||||||
message = data
|
message = data
|
||||||
|
|
Loading…
Reference in New Issue
Block a user