mirror of
				https://github.com/Swordfish90/cool-retro-term.git
				synced 2025-10-31 07:04:20 +00:00 
			
		
		
		
	Fix OSX keys issues.
This commit is contained in:
		
							
								
								
									
										10
									
								
								app/main.cpp
									
									
									
									
									
								
							
							
						
						
									
										10
									
								
								app/main.cpp
									
									
									
									
									
								
							| @@ -24,7 +24,16 @@ QString getNamedArgument(QStringList args, QString name) | ||||
|  | ||||
| int main(int argc, char *argv[]) | ||||
| { | ||||
|     // Some environmental variable are necessary on certain platforms. | ||||
|  | ||||
|     // This disables QT appmenu under Ubuntu, which is not working with QML apps. | ||||
|     setenv("QT_QPA_PLATFORMTHEME", "", 1); | ||||
|  | ||||
| #if defined(Q_OS_MAC) | ||||
|     // This allows UTF-8 characters usage in OSX. | ||||
|     setenv("LC_CTYPE", "UTF-8", 1); | ||||
| #endif | ||||
|  | ||||
|     QApplication app(argc, argv); | ||||
|     QQmlApplicationEngine engine; | ||||
|     FileIO fileIO; | ||||
| @@ -60,6 +69,7 @@ int main(int argc, char *argv[]) | ||||
|     QStringList importPathList = engine.importPathList(); | ||||
|     importPathList.prepend(QCoreApplication::applicationDirPath() + "/qmltermwidget"); | ||||
|     importPathList.prepend(QCoreApplication::applicationDirPath() + "/../PlugIns"); | ||||
|     importPathList.prepend(QCoreApplication::applicationDirPath() + "/../../../qmltermwidget"); | ||||
|     engine.setImportPathList(importPathList); | ||||
|  | ||||
|     engine.load(QUrl("qrc:/main.qml")); | ||||
|   | ||||
 Submodule qmltermwidget updated: b03e96edb5...4b3fd2729b
									
								
							
		Reference in New Issue
	
	Block a user