0
0
mirror of https://github.com/obsproject/obs-studio.git synced 2024-09-20 04:42:18 +02:00

Merge pull request #1538 from cg2121/fix-batch-remux-warning

UI: Fix batch remux compiler warning
This commit is contained in:
Jim 2018-12-03 14:41:12 -08:00 committed by GitHub
commit 884e61f078
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -459,6 +459,9 @@ QVariant RemuxQueueModel::getIcon(RemuxEntryState state)
icon = style->standardIcon(
QStyle::SP_MessageBoxWarning);
break;
default:
break;
}
return icon;