]>
Commit | Line | Data |
---|---|---|
2dc5505e JS |
1 | wxWindows Buglist |
2 | ----------------- | |
3 | ||
4 | wxGTK: | |
5 | ------ | |
6 | ||
cba2db0c JS |
7 | - TODO |
8 | ||
2dc5505e JS |
9 | wxMSW: |
10 | ------ | |
11 | ||
cba2db0c JS |
12 | - TODO |
13 | ||
2dc5505e JS |
14 | wxMotif: |
15 | -------- | |
16 | ||
b412f9be JS |
17 | - If a popup wxMenu is destroyed after its parent window has been |
18 | destroyed, we get the message "Object XXX does not have windowed | |
19 | ancestor". | |
20 | Workaround: delete the menu before deleting the window on which it | |
21 | was popped up. | |
22 | Possible fix: call menu->DestroyMenu() before deleting the window, | |
23 | if the window knows about the menu that was last popped up (hard | |
24 | to know this with confidence). | |
25 | ||
26 | - In wxGrid, cell highlight is not drawn/erased properly. | |
27 | ||
28 | - Setting the size of a hidden window may show that window. | |
29 | ||
06ad8636 JS |
30 | - wxRadioBox sometimes doesn't show (e.g. in controls sample). |
31 | ||
a91b47e8 JS |
32 | - Can't set the colours for the buttons in the file selector, for |
33 | some reason. | |
ee4c6942 | 34 | |
cba2db0c JS |
35 | - On SGI IRIX 6.4, XtDestroyWidget in ~wxWindow causes a crash in |
36 | some cicumstances. This is being looked into. Meanwhile, a | |
37 | possible workaround is to remove the final XtDestroyWidget line in ~wxWindow | |
38 | (window.cpp). This will mean that child windows will only get | |
39 | destroyed when frames and dialogs are destroyed, so dynamic subwindow | |
40 | deletion may not work properly. | |
41 | ||
42 | - There are reports that scrolling can cause crashes under Lesstif. | |
43 | This is probably a Lesstif bug. | |
44 | ||
2dc5505e JS |
45 | General: |
46 | -------- | |
47 | ||
cba2db0c JS |
48 | - Dialog Editor could be more user-friendly. Controls are hard to |
49 | size and position accurately. No way of changing tab order | |
50 | except by editing .wxr file. | |
51 |