Skip to content

Commit 84864c2

Browse files
Default is not local
1 parent 87f8df2 commit 84864c2

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

kratos.gid/exec/launch.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"configurations": [
33
{
4-
"name": "Launch via pip on GiDs python",
4+
"name": "Default",
55
"script": "pip_gids_python",
66
"pip_packages": "KratosMultiphysics-all==9.3.2",
77
"dependency_check": "Kratos::CheckDependenciesPipGiDsPythonMode"
88
},
99
{
10-
"name": "Launch via pip",
10+
"name": "External python",
1111
"script": "pip",
1212
"pip_packages": "KratosMultiphysics-all==9.3.2",
1313
"dependency_check": "Kratos::CheckDependenciesPipMode"
1414
},
1515
{
16-
"name": "Launch local compiled version",
16+
"name": "Your compiled Kratos",
1717
"script": "compiled",
1818
"dependency_check": "Kratos::CheckDependenciesLocalMode"
1919
},

kratos.gid/scripts/Controllers/Preferences.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
</combobox>
2121
<entrywithbutton name="debug_folder" label="Debug path" variable="debug_folder" buttonimage="folder.png" variablemanager='Kratos::ManagePreferences' buttonfunction="OpenBrowserForDirectoryDebug" help='Path to the kratos debug folder. This is placed in the launch.json file for debugging' />
2222
<comboboxframe name="launch_configuration" label="Launch configuration" variable="launch_configuration" variablemanager='Kratos::ManagePreferences' help='' >
23-
<option value='Launch via pip on GiDs python' label='Default'/>
24-
<option value='Launch via pip' label='External python' setactivate="python_path"/>
25-
<option value='Launch local compiled version' label='Your compiled Kratos' setactivate="python_path kratos_bin_path"/>
23+
<option value='Default' label='Default'/>
24+
<option value='External python' label='External python' setactivate="python_path"/>
25+
<option value='Your compiled Kratos' label='Your compiled Kratos' setactivate="python_path kratos_bin_path"/>
2626
<option value='Docker' label='Docker' setactivate="docker_image" />
2727
<entrywithbutton name="python_path" variable="python_path" label="Python path (exe)" variablemanager='Kratos::ManagePreferences' help='Path to python.exe' buttonimage="folder.png" buttonfunction="OpenBrowserForDirectoryPython"/>
2828
<entrywithbutton name="kratos_bin_path" variable="kratos_bin_path" label="Kratos path (bin)" variablemanager='Kratos::ManagePreferences' help='Path to your compiled kratos folder' buttonimage="folder.png" buttonfunction="OpenBrowserForDirectoryKratos"/>

kratos.gid/scripts/Controllers/PreferencesWindow.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ proc Kratos::ManagePreferences { cmd name {value ""}} {
3333
set ret ""
3434
}
3535
"launch_configuration" {
36-
set ret "local"
36+
set ret "Default"
3737
}
3838
"docker_image" {
3939
set ret "fjgarate/kratos-run"

0 commit comments

Comments
 (0)