increase window size on mac

currently the general tab will be compressed to an almost unusable level due to the differences in Windows and Macintosh styles
This commit is contained in:
WarmUpTill 2020-06-30 20:11:44 +02:00
parent a4418996f4
commit 098159dc0f

View File

@ -42,7 +42,9 @@ SceneSwitcher::SceneSwitcher(QWidget *parent)
void SceneSwitcher::loadUI()
{
#if __APPLE__
setMinimumHeight(700);
#endif
BPtr<char *> scenes = obs_frontend_get_scene_names();
char **temp = scenes;
while (*temp) {