summaryrefslogtreecommitdiffstats
path: root/webkit/glue/webcursor_gtk.cc
diff options
context:
space:
mode:
authorthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-16 21:30:10 +0000
committerthestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-16 21:30:10 +0000
commitd74aa110e3084556ba0e99b0f5d9efa94960b3d1 (patch)
tree69a3053e273b92bc630ea4a89ccab26eae502e86 /webkit/glue/webcursor_gtk.cc
parent0cea3942c2a153f0d7018919f601e71af80b3fce (diff)
downloadchromium_src-d74aa110e3084556ba0e99b0f5d9efa94960b3d1.zip
chromium_src-d74aa110e3084556ba0e99b0f5d9efa94960b3d1.tar.gz
chromium_src-d74aa110e3084556ba0e99b0f5d9efa94960b3d1.tar.bz2
Fix incorrect gtk cursors. se-resize and sw-resize are reversed.
BUG=14213 TEST=see bug report. Review URL: http://codereview.chromium.org/125212 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18535 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/webcursor_gtk.cc')
-rw-r--r--webkit/glue/webcursor_gtk.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/webkit/glue/webcursor_gtk.cc b/webkit/glue/webcursor_gtk.cc
index d95bc1b..77ced23 100644
--- a/webkit/glue/webcursor_gtk.cc
+++ b/webkit/glue/webcursor_gtk.cc
@@ -71,9 +71,9 @@ GdkCursorType WebCursor::GetCursorType() const {
case PlatformCursor::TypeSouthResize:
return GDK_BOTTOM_SIDE;
case PlatformCursor::TypeSouthEastResize:
- return GDK_BOTTOM_LEFT_CORNER;
- case PlatformCursor::TypeSouthWestResize:
return GDK_BOTTOM_RIGHT_CORNER;
+ case PlatformCursor::TypeSouthWestResize:
+ return GDK_BOTTOM_LEFT_CORNER;
case PlatformCursor::TypeWestResize:
return GDK_LEFT_SIDE;
case PlatformCursor::TypeNorthSouthResize: