Skip to content
Snippets Groups Projects
Commit 9dc8ff84 authored by Jim's avatar Jim
Browse files

Add a title to the properties window

parent 76ff395a
No related branches found
No related tags found
No related merge requests found
......@@ -73,6 +73,7 @@ Basic.SourceSelect.CreateNew="Create new"
Basic.SourceSelect.AddExisting="Add Existing"
# properties window
Basic.PropertiesWindow="Properties for '%1'"
Basic.PropertiesWindow.AutoSelectFormat="%1 (unsupported; autoselect: %2)"
# status bar
......
......@@ -57,6 +57,9 @@ OBSBasicProperties::OBSBasicProperties(QWidget *parent, OBSSource source_)
killTimer(resizeTimer);
resizeTimer = startTimer(100);
});
const char *name = obs_source_getname(source);
setWindowTitle(QTStr("Basic.PropertiesWindow").arg(QT_UTF8(name)));
}
void OBSBasicProperties::SourceRemoved(void *data, calldata_t params)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment