Skip to content

Commit

Permalink
Make a docking window's alpha level 0 when it disappears. Fixes #1064
Browse files Browse the repository at this point in the history
  • Loading branch information
pjrobertson committed Sep 18, 2012
1 parent 419619f commit 50e7a7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Quicksilver/Code-QuickStepInterface/QSDockingWindow.m
Expand Up @@ -183,12 +183,12 @@ - (IBAction)hide:(id)sender {
hidden = YES;
if ([self isVisible]) {
// hide on mouse out
[[self helper] _resizeWindow:self toFrame:hideRect alpha:0.1 display:YES];
[[self helper] _resizeWindow:self toFrame:hideRect alpha:0 display:YES];
[self saveFrame];
} else {
// hide on application launch
[self setFrame:hideRect display:YES];
[self setAlphaValue:0.1];
[self setAlphaValue:0];
}
[self setHasShadow:NO];
}
Expand Down

0 comments on commit 50e7a7a

Please sign in to comment.