[nautilus/wip/antoniof/gtk4-preparation-popovers] general: Stop using GdkCursorType
- From: António Fernandes <antoniof src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [nautilus/wip/antoniof/gtk4-preparation-popovers] general: Stop using GdkCursorType
- Date: Wed, 22 Dec 2021 22:08:36 +0000 (UTC)
commit 77ed606cf636b68e8d987a6ea1f487c27a8798f8
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 2bb8d94be..a0508c0c5 100644
--- a/src/nautilus-list-view.c
+++ b/src/nautilus-list-view.c
@@ -3617,7 +3617,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 8a2b095e4..a0282bb11 100644
--- a/src/nautilus-properties-window.c
+++ b/src/nautilus-properties-window.c
@@ -2874,7 +2874,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]