mirror of
https://github.com/obsproject/obs-studio.git
synced 2026-03-27 19:02:02 -04:00
UI: Fix settings mismatch
This commit is contained in:
@@ -42,8 +42,8 @@ OBSBasicInteraction::OBSBasicInteraction(QWidget *parent, OBSSource source_)
|
||||
renamedSignal(obs_source_get_signal_handler(source), "rename", OBSBasicInteraction::SourceRenamed, this),
|
||||
eventFilter(BuildEventFilter())
|
||||
{
|
||||
int cx = (int)config_get_int(App()->GetUserConfig(), "InteractionWindow", "cx");
|
||||
int cy = (int)config_get_int(App()->GetUserConfig(), "InteractionWindow", "cy");
|
||||
int cx = (int)config_get_int(App()->GetAppConfig(), "InteractionWindow", "cx");
|
||||
int cy = (int)config_get_int(App()->GetAppConfig(), "InteractionWindow", "cy");
|
||||
|
||||
Qt::WindowFlags flags = windowFlags();
|
||||
Qt::WindowFlags helpFlag = Qt::WindowContextHelpButtonHint;
|
||||
|
||||
Reference in New Issue
Block a user