[gnome-games/wip/exalm/gtk4: 25/30] display-box: Stop using gdk_cursor_new_from_display()
- From: Alexander Mikhaylenko <alexm src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-games/wip/exalm/gtk4: 25/30] display-box: Stop using gdk_cursor_new_from_display()
- Date: Sun, 16 Sep 2018 12:52:07 +0000 (UTC)
commit 37ccec24bde9aeb0d94b57a8ca30a4702f0a5843
Author: Alexander Mikhaylenko <exalm7659 gmail com>
Date: Sun Jul 29 14:09:35 2018 +0500
display-box: Stop using gdk_cursor_new_from_display()
Replace it with gdk_cursor_new_from_name() instead.
src/ui/display-box.vala | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
---
diff --git a/src/ui/display-box.vala b/src/ui/display-box.vala
index 4bef1774..e9ac1497 100644
--- a/src/ui/display-box.vala
+++ b/src/ui/display-box.vala
@@ -123,10 +123,8 @@ private class Games.DisplayBox : Gtk.Bin {
(!show && surface.cursor != null))
return;
- if (!show) {
- var display = surface.get_display ();
- surface.cursor = new Gdk.Cursor.for_display (display, Gdk.CursorType.BLANK_CURSOR);
- }
+ if (!show)
+ surface.cursor = new Gdk.Cursor.from_name ("none", null);
else
surface.cursor = null;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]