diff --git a/PBGitSidebarController.m b/PBGitSidebarController.m index a5c5da7..dad7de1 100644 --- a/PBGitSidebarController.m +++ b/PBGitSidebarController.m @@ -522,11 +522,11 @@ enum { // get config BOOL hasSVN = [repository hasSvnRemote]; [svnFetchButton setEnabled:hasSVN]; - [svnFetchButton setTransparent:!hasSVN]; + [svnFetchButton setHidden:!hasSVN]; [svnRebaseButton setEnabled:hasSVN]; - [svnRebaseButton setTransparent:!hasSVN]; + [svnRebaseButton setHidden:!hasSVN]; [svnDcommitButton setEnabled:hasSVN]; - [svnDcommitButton setTransparent:!hasSVN]; + [svnDcommitButton setHidden:!hasSVN]; } - (IBAction) fetchPullPushAction:(id)sender