From 96c3e4b883961fdeb6cc032388da6f5e7b942d58 Mon Sep 17 00:00:00 2001 From: lukefromdc Date: Fri, 22 Nov 2024 01:37:30 -0500 Subject: Replace GtkSourceView with GtkTextView As Stickynotes doesn't seem to work with GtkSourceView anymore --- stickynotes/stickynotes.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stickynotes/stickynotes.c') diff --git a/stickynotes/stickynotes.c b/stickynotes/stickynotes.c index b2ebb85c..e1e1f8cb 100644 --- a/stickynotes/stickynotes.c +++ b/stickynotes/stickynotes.c @@ -139,7 +139,7 @@ stickynote_new_aux (GdkScreen *screen, gtk_widget_add_events (note->w_lock, GDK_BUTTON_PRESS_MASK); note->buffer = - GTK_SOURCE_BUFFER (gtk_text_view_get_buffer (GTK_TEXT_VIEW (note->w_body))); + GTK_TEXT_BUFFER (gtk_text_view_get_buffer (GTK_TEXT_VIEW (note->w_body))); note->w_close = GTK_WIDGET (gtk_builder_get_object (builder, "close_button")); -- cgit v1.2.1