From 3f3a587f483358f42be11a62fcd47ca6bcaad868 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Sun, 24 Aug 2014 16:40:01 -0700 Subject: [PATCH] Basic UI: Make properties window remember size --- obs/window-basic-properties.cpp | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/obs/window-basic-properties.cpp b/obs/window-basic-properties.cpp index 77848bb12..9727e681b 100644 --- a/obs/window-basic-properties.cpp +++ b/obs/window-basic-properties.cpp @@ -36,8 +36,16 @@ OBSBasicProperties::OBSBasicProperties(QWidget *parent, OBSSource source_) removedSignal (obs_source_get_signal_handler(source), "remove", OBSBasicProperties::SourceRemoved, this) { + int cx = (int)config_get_int(App()->GlobalConfig(), "PropertiesWindow", + "cx"); + int cy = (int)config_get_int(App()->GlobalConfig(), "PropertiesWindow", + "cy"); + ui->setupUi(this); + if (cx > 400 && cy > 400) + resize(cx, cy); + OBSData settings = obs_source_get_settings(source); obs_data_release(settings); @@ -131,6 +139,11 @@ void OBSBasicProperties::closeEvent(QCloseEvent *event) // the destructor gets called obs_display_remove_draw_callback(display, OBSBasicProperties::DrawPreview, this); + + config_set_int(App()->GlobalConfig(), "PropertiesWindow", "cx", + width()); + config_set_int(App()->GlobalConfig(), "PropertiesWindow", "cy", + height()); } void OBSBasicProperties::Init()