mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
Skip unhandled input events on asset library tab.
This commit is contained in:
parent
467dddf555
commit
fa08388c29
1 changed files with 3 additions and 0 deletions
|
|
@ -573,6 +573,9 @@ void ProjectManager::_unhandled_input(const InputEvent &p_ev) {
|
|||
if (!k.pressed)
|
||||
return;
|
||||
|
||||
if (tabs->get_current_tab() != 0)
|
||||
return;
|
||||
|
||||
bool scancode_handled = true;
|
||||
|
||||
switch (k.scancode) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue