Skip to content
This repository was archived by the owner on Aug 30, 2021. It is now read-only.

Commit aea1f25

Browse files
author
Bart
committed
Moved in-app terminal out of experimental
1 parent 55c6860 commit aea1f25

File tree

2 files changed

+6
-10
lines changed

2 files changed

+6
-10
lines changed

src/Dialogs/Preferences.vala

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,13 @@ public class Preferences : Gtk.Dialog {
7676
general_grid.attach (terminalNameLabel, 0, 2, 1, 1);
7777
general_grid.attach (terminalNameEntry, 1, 2, 1, 1);
7878

79-
general_grid.attach (experimental_header, 0, 3, 2, 1);
80-
general_grid.attach (addBookmarksToDockUpdateLabel, 0, 4, 1, 1);
81-
general_grid.attach (addBookmarksToDockUpdateButton, 1, 4, 1, 1);
79+
general_grid.attach (use_terminal_label, 0, 3, 1, 1);
80+
general_grid.attach (use_terminal, 1, 3, 1, 1);
8281

83-
general_grid.attach (use_terminal_label, 0, 5, 1, 1);
84-
general_grid.attach (use_terminal, 1, 5, 1, 1);
82+
general_grid.attach (experimental_header, 0, 4, 2, 1);
83+
84+
general_grid.attach (addBookmarksToDockUpdateLabel, 0, 5, 1, 1);
85+
general_grid.attach (addBookmarksToDockUpdateButton, 1, 5, 1, 1);
8586

8687
var main_grid = new Gtk.Grid ();
8788
main_grid.attach (general_grid, 0, 0, 1, 1);

src/ListBoxRow.vala

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,6 @@ public class ListBoxRow : Gtk.ListBoxRow {
7474
start_button.set_tooltip_text(_("Start an SSH session in a terminal"));
7575
start_button.button_press_event.connect (() => {
7676

77-
string result;
78-
string error;
79-
int status;
80-
81-
8277
if(settings.get_boolean("use-terminal")){
8378

8479
stackManager.addATerminal();

0 commit comments

Comments
 (0)