Do not redraw the dialog on activate
This commit is contained in:
parent
303c402ada
commit
f81370f8cf
4
doc/TODO
4
doc/TODO
|
@ -20,10 +20,12 @@ Missing Features
|
|||
└──► tmp
|
||||
---------------------------------------
|
||||
|
||||
- Screen characters should get the options transparent
|
||||
and transparent with color
|
||||
- FDialog title button [▲] and [▼] should maximized or restore
|
||||
the window size on a resizeable dialog
|
||||
- A possibility to change the window size dynamically with the mouse
|
||||
- Add a scrolling area with on-demand scroll bars for FButtonGroup
|
||||
- Adding for flexible layouts a FGrid widget container that organizes
|
||||
- Adding for flexible layouts a FGrid widget container that organizes
|
||||
its child widgets in rows and columns
|
||||
|
||||
|
|
|
@ -1033,7 +1033,8 @@ void FDialog::activateDialog()
|
|||
if ( ! focusFirstChild() )
|
||||
old_focus->unsetFocus();
|
||||
|
||||
old_focus->redraw();
|
||||
if ( ! old_focus->isWindow() )
|
||||
old_focus->redraw();
|
||||
}
|
||||
|
||||
if ( statusBar() )
|
||||
|
|
Loading…
Reference in New Issue