summaryrefslogtreecommitdiffstats
path: root/krdc/vnc
diff options
context:
space:
mode:
authorDaniel Collins <solemnwarning@solemnwarning.net>2025-04-16 21:05:48 +0100
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-04-28 21:11:09 +0900
commitb2cb25ce7dde70c48747856d22dfac03f27033e1 (patch)
tree40e3e2ce56b49bff825a808404414ac1ae6bf104 /krdc/vnc
parentee1f23d33da9a253c87a8f73e3decc7b97e19a85 (diff)
downloadtdenetwork-b2cb25ce.tar.gz
tdenetwork-b2cb25ce.zip
Use the normal mouse pointer when local mouse pointer is enabled in krdc.
The previously-included mouse pointer is invisible against dark backgrounds. https://mirror.git.trinitydesktop.org/gitea/TDE/tdenetwork/issues/98 (cherry picked from commit 40e3e626e4cc8bb2d65788e3c097ddae4192c4d8)
Diffstat (limited to 'krdc/vnc')
-rw-r--r--krdc/vnc/kvncview.cpp7
1 files changed, 1 insertions, 6 deletions
diff --git a/krdc/vnc/kvncview.cpp b/krdc/vnc/kvncview.cpp
index 88219776..30cb2356 100644
--- a/krdc/vnc/kvncview.cpp
+++ b/krdc/vnc/kvncview.cpp
@@ -97,12 +97,7 @@ KVncView::KVncView(TQWidget *parent,
connect(m_cb, TQ_SIGNAL(selectionChanged()), this, TQ_SLOT(selectionChanged()));
connect(m_cb, TQ_SIGNAL(dataChanged()), this, TQ_SLOT(clipboardChanged()));
- TDEStandardDirs *dirs = TDEGlobal::dirs();
- TQBitmap cursorBitmap(dirs->findResource("appdata",
- "pics/pointcursor.png"));
- TQBitmap cursorMask(dirs->findResource("appdata",
- "pics/pointcursormask.png"));
- m_cursor = TQCursor(cursorBitmap, cursorMask);
+ m_cursor = TQt::ArrowCursor;
if ((quality != QUALITY_UNKNOWN) ||
!encodings.isNull())