From 29cbc50183725f9882b748636e24b11f2aef563a Mon Sep 17 00:00:00 2001 From: brunoherbelin Date: Mon, 20 Jul 2020 14:50:37 +0200 Subject: [PATCH] diagonal cursor for layers view. --- View.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/View.cpp b/View.cpp index e9b66b0..1be24c9 100644 --- a/View.cpp +++ b/View.cpp @@ -804,7 +804,7 @@ View::Cursor LayerView::grab (Source *s, glm::vec2 from, glm::vec2 to, std::pair std::ostringstream info; info << "Depth " << std::fixed << std::setprecision(2) << d; - return Cursor(Cursor_ResizeAll, info.str() ); + return Cursor(Cursor_ResizeNESW, info.str() ); }