فهرست منبع

UI: Allow buttons to refresh properties view

I forgot to check the return value from the button to see if the button
wanted the UI to be refreshed or not.
jp9000 10 سال پیش
والد
کامیت
82b36ca41e
1فایلهای تغییر یافته به همراه4 افزوده شده و 1 حذف شده
  1. 4 1
      obs/properties-view.cpp

+ 4 - 1
obs/properties-view.cpp

@@ -664,7 +664,10 @@ bool WidgetInfo::FontChanged(const char *setting)
 
 void WidgetInfo::ButtonClicked()
 {
-	obs_property_button_clicked(property, view->obj);
+	if (obs_property_button_clicked(property, view->obj)) {
+		QMetaObject::invokeMethod(view, "RefreshProperties",
+				Qt::QueuedConnection);
+	}
 }
 
 void WidgetInfo::ControlChanged()