1 Commits

Author SHA1 Message Date
RadRussianRus
69792c063d Fix background in settings window 2024-10-11 10:58:39 +02:00
3 changed files with 2 additions and 2 deletions

View File

@@ -58,7 +58,6 @@ int main(int argc, char *argv[])
cout << " -p|--profile <prof> Run cool-retro-term with the given profile." << '\n'; cout << " -p|--profile <prof> Run cool-retro-term with the given profile." << '\n';
cout << " -h|--help Print this help." << '\n'; cout << " -h|--help Print this help." << '\n';
cout << " --verbose Print additional information such as profiles and settings." << '\n'; cout << " --verbose Print additional information such as profiles and settings." << '\n';
cout << " -v|--version Print the program name and version." << '\n';
return 0; return 0;
} }

View File

@@ -746,7 +746,7 @@ QtObject {
loadCustomProfiles() loadCustomProfiles()
var profileArgPosition = args.indexOf(/-p|--profile/) var profileArgPosition = args.indexOf("--profile")
if (profileArgPosition !== -1) { if (profileArgPosition !== -1) {
var profileIndex = getProfileIndexByName( var profileIndex = getProfileIndexByName(
args[profileArgPosition + 1]) args[profileArgPosition + 1])

View File

@@ -30,6 +30,7 @@ Window {
width: 640 width: 640
height: 640 height: 640
color: palette.window
property int tabmargins: 15 property int tabmargins: 15
Item { Item {