Skip to content

Commit

Permalink
Tux: fixes #4565: Status bar text runs under Navigation Button
Browse files Browse the repository at this point in the history
  • Loading branch information
wwmayer committed Feb 28, 2021
1 parent 957eed7 commit 59048fb
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/Mod/Tux/NavigationIndicatorGui.py
Original file line number Diff line number Diff line change
Expand Up @@ -535,8 +535,11 @@ def setCurrent():
onTooltip()
onOrbitShow()

label = statusBar.children()[2]
statusBar.removeWidget(label)
statusBar.addPermanentWidget(indicator)
statusBar.addPermanentWidget(statusBar.children()[2])
statusBar.addPermanentWidget(label)
label.show()

setCurrent()

Expand Down

0 comments on commit 59048fb

Please sign in to comment.