瀏覽代碼

UI: Enable high DPI scaling, for Qt >= 5.11

Closes obsproject/obs-studio#1602
Kevin Ross 6 年之前
父節點
當前提交
a5fac7d78c
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      UI/obs-app.cpp

+ 4 - 0
UI/obs-app.cpp

@@ -1648,6 +1648,10 @@ static int run_program(fstream &logFile, int argc, char *argv[])
 
 	ScopeProfiler prof{run_program_init};
 
+#if (QT_VERSION >= QT_VERSION_CHECK(5, 11, 0))
+	QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
+#endif
+
 	QCoreApplication::addLibraryPath(".");
 
 	OBSApp program(argc, argv, profilerNameStore.get());