Permalink
Browse files
Only toggle on-screen touchbar if it is enabled. (#89)
- Loading branch information...
Showing
with
2 additions
and
1 deletion.
-
+2
−1
TouchBarServer/AppDelegate.m
|
|
@@ -255,7 +255,8 @@ - (IBAction)changeRemoteAlign:(NSMenuItem *)sender { |
|
|
}
|
|
|
|
|
|
- (void)didPressModifierKey {
|
|
|
- [self toggleTouchBarWindow];
|
|
|
+ if (self.screenEnable == YES)
|
|
|
+ [self toggleTouchBarWindow];
|
|
|
}
|
|
|
|
|
|
- (NSMutableDictionary *)keyCaptionsForCurrentInputSource {
|
|
|
|
0 comments on commit
fe3635d