mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 04:57:03 +00:00
new: Clear the cached visible rect so it gets recalculated after size changes
This commit is contained in:
@@ -2069,8 +2069,16 @@ Sets the selection to a range of characters in response to user action.
|
||||
[self setFrameSize:[self frameSize]];
|
||||
}
|
||||
|
||||
- (void)setBoundsSize:(CGSize)aSize
|
||||
{
|
||||
_exposedRect = nil; // Clear the cached visible rect when bounds change
|
||||
[super setBoundsSize:aSize];
|
||||
}
|
||||
|
||||
- (void)setFrameSize:(CGSize)aSize
|
||||
{
|
||||
_exposedRect = nil; // Clear the cached visible rect so it gets recalculated at the new size
|
||||
|
||||
var desiredSize = CGSizeCreateCopy(aSize);
|
||||
|
||||
if (_isHorizontallyResizable || _isVerticallyResizable)
|
||||
|
||||
Reference in New Issue
Block a user