Skip to content

Commit c9a66fa

Browse files
committed
VSCode launch.json: added Qt color mode env var
1 parent d9f2a07 commit c9a66fa

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.vscode/launch.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,20 @@
99
"type": "python",
1010
"request": "launch",
1111
"program": "${workspaceFolder}/guidata/tests/__init__.py",
12-
"console": "integratedTerminal"
12+
"console": "integratedTerminal",
13+
"env": {
14+
// "QT_COLOR_MODE": "light",
15+
}
1316
},
1417
{
1518
"name": "Python : Current file",
1619
"type": "python",
1720
"request": "launch",
1821
"program": "${file}",
19-
"console": "integratedTerminal"
22+
"console": "integratedTerminal",
23+
"env": {
24+
// "QT_COLOR_MODE": "light",
25+
}
2026
}
2127
]
2228
}

0 commit comments

Comments
 (0)