- edited description
- changed version to M-0.19
Weird index window behavior
Version 0.19-SNAPSHOT, Linux, two display setup
-
Create index window filter It creates 1-pixel width window. But it can be widened.
-
Disable it
- Close the tool
- Re-open the tool
1-pixel width window appears on the other display. It is empty though if widened.
Comments (5)
-
reporter -
reporter - changed component to GUI
-
reporter - changed status to resolved
Fix
#116: postpone showing index filter windowDuring startup the index window was created before main frame was ready. The size of the index window is derived from the size of the main so the resulting size of the former was incorrect (width==0). The main window is layed out in the same event that creates an index filter controller so the simple invokeLater does the trick.
Creation of the MainFrame is also done on EDT now. Without this an invokeLater trick won't work. It is a right thing to do anyway.
It is quite hard to write a meaningful test here but assert should help.
→ <<cset df7db3fe7eb3>>
-
reporter - changed version to 0.19
-
reporter - changed status to closed
- Log in to comment