mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
fix goto shortcut
This commit is contained in:
parent
8a2b54c2b7
commit
f2807e38f9
1 changed files with 2 additions and 1 deletions
|
@ -3721,7 +3721,8 @@ void Application::keyPressEvent(QKeyEvent* event) {
|
|||
if (isShifted && isMeta) {
|
||||
Menu::getInstance()->triggerOption(MenuOption::Log);
|
||||
} else if (isMeta) {
|
||||
Menu::getInstance()->triggerOption(MenuOption::AddressBar);
|
||||
auto dialogsManager = DependencyManager::get<DialogsManager>();
|
||||
dialogsManager->toggleAddressBar();
|
||||
} else if (isShifted) {
|
||||
Menu::getInstance()->triggerOption(MenuOption::LodTools);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue