see discussion in #26952
https://github.com/wxWidgets/wxWidgets/pull/26955
(7 files)
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications, keep track of coding agent tasks and review pull requests on the go with GitHub Mobile for iOS and Android. Download it today!
You are receiving this because you are subscribed to this thread.![]()
@csomor pushed 1 commit.
—
View it on GitHub or unsubscribe.
Triage notifications, keep track of coding agent tasks and review pull requests on the go with GitHub Mobile for iOS and Android. Download it today!
You are receiving this because you are subscribed to this thread.![]()
@vadz approved this pull request.
Great, thanks, this looks exactly like what I had in mind.
Did you check that this actually fixed #26952?
And, also, can we remove MacClipsToBounds() call added in cc0fd2c (Improve wxSpinCtrl sizing and appearance on macOS, 2025-09-07) now?
> @@ -268,6 +268,16 @@ wxSize wxTextCtrl::DoGetSizeFromTextSize(int xlen, int ylen) const
return size;
}
+void wxTextCtrl::DoSetSize(int x, int y, int width, int height, int sizeFlags)
+{
+ wxTextCtrlBase::DoSetSize(x, y, width, height, sizeFlags);
+ wxWindow* parent = GetParent();
+ if ( parent && parent->MacIsUserPane() && GetPosition().y == 0 ) {
Tiny style nitpick
⬇️ Suggested change- if ( parent && parent->MacIsUserPane() && GetPosition().y == 0 ) {
+ if ( parent && parent->MacIsUserPane() && GetPosition().y == 0 )
+ {
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications, keep track of coding agent tasks and review pull requests on the go with GitHub Mobile for iOS and Android. Download it today!
You are receiving this because you are subscribed to this thread.![]()
@csomor pushed 1 commit.
—
View it on GitHub or unsubscribe.
Triage notifications, keep track of coding agent tasks and review pull requests on the go with GitHub Mobile for iOS and Android. Download it today!
You are receiving this because you are subscribed to this thread.![]()
Great, thanks, this looks exactly like what I had in mind.
Did you check that this actually fixed #26952?
yes, it does
And, also, can we remove
MacClipsToBounds()call added in cc0fd2c (Improve wxSpinCtrl sizing and appearance on macOS, 2025-09-07) now?
according to my tests, it solves this as well
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications, keep track of coding agent tasks and review pull requests on the go with GitHub Mobile for iOS and Android. Download it today!
You are receiving this because you are subscribed to this thread.![]()
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications, keep track of coding agent tasks and review pull requests on the go with GitHub Mobile for iOS and Android. Download it today!
You are receiving this because you are subscribed to this thread.![]()