diff --git a/app/main.cpp b/app/main.cpp index 2c580b3..12b043b 100644 --- a/app/main.cpp +++ b/app/main.cpp @@ -66,7 +66,6 @@ int main(int argc, char *argv[]) cout << " --default-settings Run cool-retro-term with the default settings" << Qt::endl; cout << " --workdir Change working directory to 'dir'" << Qt::endl; cout << " -e Command to execute. This option will catch all following arguments, so use it as the last option." << Qt::endl; - cout << " -T Set window title to 'title'." << Qt::endl; cout << " --fullscreen Run cool-retro-term in fullscreen." << Qt::endl; cout << " -p|--profile <prof> Run cool-retro-term with the given profile." << Qt::endl; cout << " -h|--help Print this help." << Qt::endl; diff --git a/app/qml/ApplicationSettings.qml b/app/qml/ApplicationSettings.qml index 0ec6bd1..5b2fbbe 100644 --- a/app/qml/ApplicationSettings.qml +++ b/app/qml/ApplicationSettings.qml @@ -48,8 +48,6 @@ QtObject { property bool fullscreen: false property bool showMenubar: false - property string wintitle: "cool-retro-term" - property bool showTerminalSize: true property real windowScaling: 1.0 @@ -890,10 +888,6 @@ QtObject { showMenubar = false } - if (args.indexOf("-T") !== -1) { - wintitle = args[args.indexOf("-T") + 1] - } - initializedSettings() } diff --git a/app/qml/TerminalWindow.qml b/app/qml/TerminalWindow.qml index 53a5833..a0d60e5 100644 --- a/app/qml/TerminalWindow.qml +++ b/app/qml/TerminalWindow.qml @@ -67,7 +67,6 @@ ApplicationWindow { sourceComponent: OSXMenu { } } - property string wintitle: appSettings.wintitle property real normalizedWindowScale: 1024 / ((0.5 * width + 0.5 * height)) color: "#00000000"