We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d82aa0 commit e05be3bCopy full SHA for e05be3b
PBGitSidebarController.m
@@ -522,11 +522,11 @@ - (void) updateRemoteControls
522
// get config
523
BOOL hasSVN = [repository hasSvnRemote];
524
[svnFetchButton setEnabled:hasSVN];
525
- [svnFetchButton setTransparent:!hasSVN];
+ [svnFetchButton setHidden:!hasSVN];
526
[svnRebaseButton setEnabled:hasSVN];
527
- [svnRebaseButton setTransparent:!hasSVN];
+ [svnRebaseButton setHidden:!hasSVN];
528
[svnDcommitButton setEnabled:hasSVN];
529
- [svnDcommitButton setTransparent:!hasSVN];
+ [svnDcommitButton setHidden:!hasSVN];
530
}
531
532
- (IBAction) fetchPullPushAction:(id)sender
0 commit comments