From 6af3a76a1fae17ec5a15827103e7029c69a1e73f Mon Sep 17 00:00:00 2001 From: Colin Kiama Date: Tue, 28 Nov 2023 14:08:08 +0000 Subject: [PATCH] Resolve code-style formatting issues --- src/Application.vala | 1 - src/Widgets/SourceView.vala | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application.vala b/src/Application.vala index ada5c69a0..8473dd563 100644 --- a/src/Application.vala +++ b/src/Application.vala @@ -185,7 +185,6 @@ namespace Scratch { } else { window.open_document (doc); } - } } } diff --git a/src/Widgets/SourceView.vala b/src/Widgets/SourceView.vala index 179a9e9d9..5589de04f 100644 --- a/src/Widgets/SourceView.vala +++ b/src/Widgets/SourceView.vala @@ -480,6 +480,7 @@ namespace Scratch.Widgets { if (range.start_line < 0) { return; } + Gtk.TextIter start_iter; buffer.get_start_iter (out start_iter); start_iter.set_line (range.start_line - 1);