FileDialog: keyboard shortcut to toggle "show hidden files"
This commit is contained in:
parent
4dba503fc3
commit
3ca800226e
6 changed files with 97 additions and 2 deletions
|
|
@ -862,6 +862,13 @@ bool Control::window_has_modal_stack() const {
|
|||
return data.window->window->modal_stack.size();
|
||||
}
|
||||
|
||||
bool Control::is_window_modal_on_top() const {
|
||||
|
||||
if (window_has_modal_stack())
|
||||
return data.window->window->modal_stack.back()->get()==this;
|
||||
return false;
|
||||
}
|
||||
|
||||
void Control::_window_cancel_tooltip() {
|
||||
|
||||
window->tooltip=NULL;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue