Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ public InstanceLocalPanel(final PayaraInstance instance) {
super(instance);
hostRemoteLabel.setVisible(false);
hostRemoteField.setVisible(false);
instanceTypeLabel.setVisible(false);
instanceTypeComboBox.setVisible(false);
}

////////////////////////////////////////////////////////////////////////////
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ protected void storeCredentials() {
* container path if they differ from the values stored in the instance
* object.
* <p/>
* The instance type can be one of the following: Docker, WSL, or None. If
* The instance type can be one of the following: Docker, WSL, or Remote. If
* Docker is selected, both host path and container path fields are enabled.
* Otherwise, they are disabled.
*/
Expand Down Expand Up @@ -971,7 +971,7 @@ public void actionPerformed(java.awt.event.ActionEvent evt) {
);
}// </editor-fold>//GEN-END:initComponents

private final static String DEFAULT_INSTANCE = "None";
private final static String DEFAULT_INSTANCE = "Remote";
private final static String DOCKER_INSTANCE = "Docker";
private final static String WSL_INSTANCE = "WSL";

Expand Down
Loading