Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
x
  • Loading branch information
buhtz committed Oct 5, 2025
commit c5fa590d73e753fd92415eeb2f07a9fc3cea3bc3
2 changes: 1 addition & 1 deletion qt/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -658,7 +658,7 @@ def _create_actions(self):
if pwd.getpwuid(os.getuid()).pw_name == 'root': # BIT root-mode
tooltip = 'Not available in root mode.'
act_key = 'act_help_user_manual'
act = self.getattr(act_key)
act = getattr(self, act_key)
act.setEnabled(False)
act.setToolTip(tooltip)

Expand Down