-
Notifications
You must be signed in to change notification settings - Fork 5
Fix description text ctrl size #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Fix description text ctrl size #6
Conversation
As a newline, wouldn't that increase the height not the width? Shouldn't it be a |
No, the static text control label extrudes the text control that actually displays the event description. |
Source was out of date.
@hwf1324 Why the change to the way I'm going to go back to importing Also, you should update your fork; you're several commits behind. |
Based on the description of the comment, how can I adjust it so that the TextCtrl is higher to show more content? |
This was done because the language server could not find a definition for
If this is done, then all calls to |
Language server? I do not understand.
It does, but as I said it is not standard.
Yes. I did that indeed. |
size=self.scaleSize((500, 300)), # height is chosen to ensure the dialog will fit on an 800x600 screen,
Based on the description of the comment, how can I adjust it so that the TextCtrl is higher to show more content?
Raise the second number.
This comes from NVDA source, in gui/dpiScalingHelper.py.
I am not good with window layout.
|
Meaning as long as the GUI is not larger than 800x600? There is no other special meaning. |
Manually set the
proportion
property ofdescription.sizer
to1
and setflag=wx.EXPAND
when addingself.description.sizer
tocontentsSizer
.Set the size of the dialog box and reduce the height of
ListBox
to increase the height ofTextCtrl
.Change
"Event &description"
to"Event\n&description"
to increase the width of the description.Closes #3