Skip to content

Commit 28c788e

Browse files
committed
qtdragon_hd/vert - fix a startup error about linedit_statusbar
copy paste error from qtdragon - code names are slightly different.
1 parent 898c148 commit 28c788e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

share/qtvcp/screens/qtdragon_hd/qtdragon_hd_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1592,7 +1592,7 @@ def add_status(self, message, alertLevel = DEFAULT, noLog = False):
15921592
else:
15931593
opt += ',CRITICAL'
15941594
self.set_style_critical()
1595-
self.w.lineEdit_statusbar.setText(message)
1595+
self.w.statusbar.setText(message)
15961596
if noLog:
15971597
return
15981598
STATUS.emit('update-machine-log', message, opt)

share/qtvcp/screens/qtdragon_hd_vert/qtdragon_hd_vert_handler.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1592,7 +1592,7 @@ def add_status(self, message, alertLevel = DEFAULT, noLog = False):
15921592
else:
15931593
opt += ',CRITICAL'
15941594
self.set_style_critical()
1595-
self.w.lineEdit_statusbar.setText(message)
1595+
self.w.statusbar.setText(message)
15961596
if noLog:
15971597
return
15981598
STATUS.emit('update-machine-log', message, opt)

0 commit comments

Comments
 (0)