Revert "UI: Disable hotkeys when a user is expected to type text"

This reverts commit f832d14220.

Reverting this until we do more investigation. Currently, any text
that can be typed in a dialog requires the dialog to re-enable hotkeys
on destruction, which is frustrating. There has to be a better way.
This commit is contained in:
jp9000
2021-10-03 07:52:44 -07:00
parent 1df2789978
commit da04907927
7 changed files with 0 additions and 24 deletions

View File

@@ -214,8 +214,6 @@ OBSBasicProperties::OBSBasicProperties(QWidget *parent, OBSSource source_)
} else {
preview->hide();
}
App()->DisableHotkeys();
}
OBSBasicProperties::~OBSBasicProperties()
@@ -226,7 +224,6 @@ OBSBasicProperties::~OBSBasicProperties()
obs_source_dec_showing(source);
main->SaveProject();
main->UpdateContextBar();
App()->UpdateHotkeyFocusSetting();
}
void OBSBasicProperties::AddPreviewButton()