We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
this
1 parent 1459644 commit 031a537Copy full SHA for 031a537
src/Widgets/Terminal.vala
@@ -239,13 +239,13 @@ public class Code.Terminal : Gtk.Box {
239
var cursor_shape_setting = terminal_settings.get_string (TERMINAL_CURSOR_KEY);
240
switch (cursor_shape_setting) {
241
case "Block":
242
- this.terminal.cursor_shape = Vte.CursorShape.BLOCK;
+ terminal.cursor_shape = Vte.CursorShape.BLOCK;
243
break;
244
case "I-Beam":
245
- this.terminal.cursor_shape = Vte.CursorShape.IBEAM;
+ terminal.cursor_shape = Vte.CursorShape.IBEAM;
246
247
case "Underline":
248
- this.terminal.cursor_shape = Vte.CursorShape.UNDERLINE;
+ terminal.cursor_shape = Vte.CursorShape.UNDERLINE;
249
250
}
251
} //No corresponding system keymap
0 commit comments