mirror of
https://github.com/transmission/transmission
synced 2025-01-31 03:12:44 +00:00
(trunk qt) disable the "open folder" option if we're connected to daemon running on a different machine
This commit is contained in:
parent
ff3e18f52a
commit
fe1f550f1c
1 changed files with 1 additions and 1 deletions
|
@ -732,7 +732,7 @@ TrMainWindow :: refreshActionSensitivity( )
|
|||
ui.action_DeselectAll->setEnabled( haveSelection );
|
||||
|
||||
const bool oneSelection( selected == 1 );
|
||||
ui.action_OpenFolder->setEnabled( oneSelection );
|
||||
ui.action_OpenFolder->setEnabled( oneSelection && mySession.isLocal( ) );
|
||||
|
||||
ui.action_SelectAll->setEnabled( selected < rowCount );
|
||||
ui.action_StartAll->setEnabled( paused > 0 );
|
||||
|
|
Loading…
Reference in a new issue