[nautilus/gtk4-preparation-trunk: 45/49] general: Stop using GdkCursorType
- From: António Fernandes <antoniof src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [nautilus/gtk4-preparation-trunk: 45/49] general: Stop using GdkCursorType
- Date: Fri, 31 Dec 2021 23:57:05 +0000 (UTC)
commit 7ceb882fa0e5251a350ad91236be8bbd91fa6295
Author: António Fernandes <antoniof gnome org>
Date: Wed Dec 22 21:50:10 2021 +0000
general: Stop using GdkCursorType
It's gone in GTK 4. Replace with the equivalent named cursors.
src/nautilus-list-view.c | 2 +-
src/nautilus-properties-window.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/nautilus-list-view.c b/src/nautilus-list-view.c
index a14366df7..0647ba29f 100644
--- a/src/nautilus-list-view.c
+++ b/src/nautilus-list-view.c
@@ -3482,7 +3482,7 @@ nautilus_list_view_click_policy_changed (NautilusFilesView *directory_view)
{
if (hand_cursor == NULL)
{
- hand_cursor = gdk_cursor_new_for_display (display, GDK_HAND2);
+ hand_cursor = gdk_cursor_new_from_name (display, "pointer");
}
}
}
diff --git a/src/nautilus-properties-window.c b/src/nautilus-properties-window.c
index a8e4f10da..0127a4451 100644
--- a/src/nautilus-properties-window.c
+++ b/src/nautilus-properties-window.c
@@ -2875,7 +2875,7 @@ start_long_operation (NautilusPropertiesWindow *self)
g_autoptr (GdkCursor) cursor = NULL;
display = gtk_widget_get_display (GTK_WIDGET (self));
- cursor = gdk_cursor_new_for_display (display, GDK_WATCH);
+ cursor = gdk_cursor_new_from_name (display, "wait");
gdk_window_set_cursor (gtk_widget_get_window (GTK_WIDGET (self)), cursor);
}
self->long_operation_underway++;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]