fix memory viewer xrc on wx 3.1+ #127
Remove the wxALIGN_CENTRE_VERTICAL flag from items that have the wxEXPAND flag in the MemViewer.xrc because wx 3.1+ warns about the flags being incompatible.
This commit is contained in:
parent
1d0eece046
commit
fb15aed223
|
@ -9,7 +9,7 @@
|
|||
<object class="sizeritem">
|
||||
<object class="wxChoice" name="BlockStart"/>
|
||||
<option>1</option>
|
||||
<flag>wxALL|wxEXPAND|wxALIGN_CENTRE_VERTICAL</flag>
|
||||
<flag>wxALL|wxEXPAND</flag>
|
||||
<border>5</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
|
@ -39,7 +39,7 @@
|
|||
<style>wxTE_PROCESS_ENTER</style>
|
||||
</object>
|
||||
<option>1</option>
|
||||
<flag>wxTOP|wxBOTTOM|wxLEFT|wxEXPAND|wxALIGN_CENTRE_VERTICAL</flag>
|
||||
<flag>wxTOP|wxBOTTOM|wxLEFT|wxEXPAND</flag>
|
||||
<border>5</border>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
|
|
Loading…
Reference in New Issue