From ac1651c7d3a3c6d7f74ceb5f1aac0bdaddb7fada Mon Sep 17 00:00:00 2001 From: jp9000 Date: Tue, 3 Feb 2015 20:54:21 -0800 Subject: [PATCH] UI: Add OBSPropertiesView::GetSettings Allows the ability to get the current settings of a properties view --- obs/properties-view.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/obs/properties-view.hpp b/obs/properties-view.hpp index 96edff2d5..5e0fe91b2 100644 --- a/obs/properties-view.hpp +++ b/obs/properties-view.hpp @@ -101,4 +101,6 @@ public: OBSPropertiesView(OBSData settings, const char *type, PropertiesReloadCallback reloadCallback, int minSize = 0); + + inline obs_data_t *GetSettings() const {return settings;} };