summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/wasm/qwasmeventtranslator.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/platforms/wasm/qwasmeventtranslator.cpp')
-rw-r--r--src/plugins/platforms/wasm/qwasmeventtranslator.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/plugins/platforms/wasm/qwasmeventtranslator.cpp b/src/plugins/platforms/wasm/qwasmeventtranslator.cpp
index dff914fdc0..0017e182a2 100644
--- a/src/plugins/platforms/wasm/qwasmeventtranslator.cpp
+++ b/src/plugins/platforms/wasm/qwasmeventtranslator.cpp
@@ -875,22 +875,17 @@ QCursor QWasmEventTranslator::cursorForMode(QWasmWindow::ResizeMode m)
case QWasmWindow::ResizeTopLeft:
case QWasmWindow::ResizeBottomRight:
return Qt::SizeFDiagCursor;
- break;
case QWasmWindow::ResizeBottomLeft:
case QWasmWindow::ResizeTopRight:
return Qt::SizeBDiagCursor;
- break;
case QWasmWindow::ResizeTop:
case QWasmWindow::ResizeBottom:
return Qt::SizeVerCursor;
- break;
case QWasmWindow::ResizeLeft:
case QWasmWindow::ResizeRight:
return Qt::SizeHorCursor;
- break;
case QWasmWindow::ResizeNone:
return Qt::ArrowCursor;
- break;
}
return Qt::ArrowCursor;
}