Skip to content

Commit

Permalink
flip profile name and account id, to make it more clear that the user…
Browse files Browse the repository at this point in the history
… will copy the account id
  • Loading branch information
redvox committed Jan 23, 2025
1 parent 716670a commit 7d13dad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/gui/trayicon.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ def update_copy_menus(self, active_profile_group: ProfileGroup):
for profile in active_profile_group.get_profile_list():
copy_name_action = self.copy_name_menu.addAction(profile.profile)
copy_name_action.triggered.connect(partial(self.copy_to_clipboard, text=profile.profile))
copy_id_action = self.copy_id_menu.addAction(f'{profile.profile} ({profile.account})')
copy_id_action = self.copy_id_menu.addAction(f'{profile.account} ({profile.profile})')
copy_id_action.triggered.connect(partial(self.copy_to_clipboard, text=str(profile.account)))

def reset_copy_menus(self):
Expand Down

0 comments on commit 7d13dad

Please sign in to comment.