From fdd556056fccae4bb697e847ea3ac716e2ff83b0 Mon Sep 17 00:00:00 2001 From: jp9000 Date: Thu, 26 May 2016 07:36:32 -0700 Subject: [PATCH] UI: Increase max combo box items in properties view It's annoying when you can't see more than 10 items in a combo box and are forced to use a scroll bar on a combo box. --- obs/properties-view.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/obs/properties-view.cpp b/obs/properties-view.cpp index 995a3aca6..036261ef0 100644 --- a/obs/properties-view.cpp +++ b/obs/properties-view.cpp @@ -470,6 +470,8 @@ QWidget *OBSPropertiesView::AddList(obs_property_t *prop, bool &warning) if (type == OBS_COMBO_TYPE_EDITABLE) combo->setEditable(true); + combo->setMaxVisibleItems(40); + string value = from_obs_data(settings, name, format); if (format == OBS_COMBO_FORMAT_STRING &&