diff options
author | rowanbeentje <rowan@beent.je> | 2012-04-02 00:23:52 +0000 |
---|---|---|
committer | rowanbeentje <rowan@beent.je> | 2012-04-02 00:23:52 +0000 |
commit | 09ed4be7e668dc10e0c4ca9178f8e1c414997b57 (patch) | |
tree | be27a884f60f33fe2eb6cabd1270983900d2ebe4 /Frameworks/PSMTabBar/Styles | |
parent | 389b86985d977f81f840112249da5e3e278921e2 (diff) | |
download | sequelpro-09ed4be7e668dc10e0c4ca9178f8e1c414997b57.tar.gz sequelpro-09ed4be7e668dc10e0c4ca9178f8e1c414997b57.tar.bz2 sequelpro-09ed4be7e668dc10e0c4ca9178f8e1c414997b57.zip |
PSMTabBar improvements:
- Add a new -destroyAnimations method to the tab bar and call it when tearing down the parent SPWindowController; this prevents animations redrawing the document after window close, fixing a number of crashes.
- Improve the logic for collapsing and uncollapsing the tab bar as tabs are added and removed, fixing height calculation errors leading to Issue #1082
- Improve tab bar draw when animating in the Sequel Pro tab style
Diffstat (limited to 'Frameworks/PSMTabBar/Styles')
-rw-r--r-- | Frameworks/PSMTabBar/Styles/PSMSequelProTabStyle.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Frameworks/PSMTabBar/Styles/PSMSequelProTabStyle.m b/Frameworks/PSMTabBar/Styles/PSMSequelProTabStyle.m index 05c4ada2..b28fbbf8 100644 --- a/Frameworks/PSMTabBar/Styles/PSMSequelProTabStyle.m +++ b/Frameworks/PSMTabBar/Styles/PSMSequelProTabStyle.m @@ -364,7 +364,7 @@ } [self drawBackgroundInRect:rect]; - + // no tab view == not connected if (![bar tabView]) { NSRect labelRect = rect; @@ -530,7 +530,7 @@ NSRect aRect = NSMakeRect(cellFrame.origin.x, cellFrame.origin.y, cellFrame.size.width, cellFrame.size.height); // If the tab bar is hidden, don't draw the top pixel - if ([tabBar isTabBarHidden]) { + if ([tabBar isTabBarHidden] && [tabBar frame].size.height == kPSMTabBarControlHeightCollapsed) { aRect.origin.y++; aRect.size.height--; } |