Title: [118389] trunk/Source/WebCore
Revision
118389
Author
[email protected]
Date
2012-05-24 10:20:33 -0700 (Thu, 24 May 2012)

Log Message

[Gtk] Wrong cursor used for ne-resize
https://bugs.webkit.org/show_bug.cgi?id=87366

Patch by Claudio Saavedra <[email protected]> on 2012-05-24
Reviewed by Eric Seidel.

* platform/gtk/CursorGtk.cpp:
(WebCore::Cursor::ensurePlatformCursor): Use GDK_TOP_RIGHT_CORNER
for Cursor::NorthEastPanning.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (118388 => 118389)


--- trunk/Source/WebCore/ChangeLog	2012-05-24 17:18:07 UTC (rev 118388)
+++ trunk/Source/WebCore/ChangeLog	2012-05-24 17:20:33 UTC (rev 118389)
@@ -1,3 +1,14 @@
+2012-05-24  Claudio Saavedra  <[email protected]>
+
+        [Gtk] Wrong cursor used for ne-resize
+        https://bugs.webkit.org/show_bug.cgi?id=87366
+
+        Reviewed by Eric Seidel.
+
+        * platform/gtk/CursorGtk.cpp:
+        (WebCore::Cursor::ensurePlatformCursor): Use GDK_TOP_RIGHT_CORNER
+        for Cursor::NorthEastPanning.
+
 2012-05-24  Gabor Ballabas  <[email protected]>
 
         [Qt]  Fix Webkit1 + V8 build.

Modified: trunk/Source/WebCore/platform/gtk/CursorGtk.cpp (118388 => 118389)


--- trunk/Source/WebCore/platform/gtk/CursorGtk.cpp	2012-05-24 17:18:07 UTC (rev 118388)
+++ trunk/Source/WebCore/platform/gtk/CursorGtk.cpp	2012-05-24 17:20:33 UTC (rev 118389)
@@ -1,7 +1,7 @@
 /*
  * Copyright (C) 2006 Michael Emmel [email protected]
  * Copyright (C) 2007 Christian Dywan <[email protected]>
- * Copyright (C) 2010 Igalia S.L.
+ * Copyright (C) 2010-2012 Igalia S.L.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -104,7 +104,7 @@
         break;
     case Cursor::NorthEastResize:
     case Cursor::NorthEastPanning:
-        m_platformCursor = adoptGRef(gdk_cursor_new(GDK_LEFT_SIDE));
+        m_platformCursor = adoptGRef(gdk_cursor_new(GDK_TOP_RIGHT_CORNER));
         break;
     case Cursor::NorthWestResize:
     case Cursor::NorthWestPanning:
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to