Skip to content

Commit 031a537

Browse files
committed
Lose unneeded this
1 parent 1459644 commit 031a537

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Widgets/Terminal.vala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -239,13 +239,13 @@ public class Code.Terminal : Gtk.Box {
239239
var cursor_shape_setting = terminal_settings.get_string (TERMINAL_CURSOR_KEY);
240240
switch (cursor_shape_setting) {
241241
case "Block":
242-
this.terminal.cursor_shape = Vte.CursorShape.BLOCK;
242+
terminal.cursor_shape = Vte.CursorShape.BLOCK;
243243
break;
244244
case "I-Beam":
245-
this.terminal.cursor_shape = Vte.CursorShape.IBEAM;
245+
terminal.cursor_shape = Vte.CursorShape.IBEAM;
246246
break;
247247
case "Underline":
248-
this.terminal.cursor_shape = Vte.CursorShape.UNDERLINE;
248+
terminal.cursor_shape = Vte.CursorShape.UNDERLINE;
249249
break;
250250
}
251251
} //No corresponding system keymap

0 commit comments

Comments
 (0)