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 40e3e626e4)
r14.1.x
Daniel Collins 11 months ago committed by Michele Calgaro
parent ee1f23d33d
commit b2cb25ce7d
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -33,7 +33,7 @@ link_directories(
tde_install_icons( krdc )
install( FILES
pointcursor.png pointcursormask.png pinup.png pindown.png
pinup.png pindown.png
iconify.png close.png
DESTINATION ${DATA_INSTALL_DIR}/krdc/pics )

@ -17,7 +17,7 @@ noinst_HEADERS = main.h krdc.h vidmode.h kfullscreenpanel.h events.h \
EXTRA_DIST = README TODO
appdatadir = $(kde_datadir)/krdc/pics
appdata_DATA = pointcursor.png pointcursormask.png pinup.png pindown.png \
appdata_DATA = pinup.png pindown.png \
iconify.png close.png
dnssddatadir = $(kde_datadir)/zeroconf

Binary file not shown.

Before

Width:  |  Height:  |  Size: 143 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 146 B

@ -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())

Loading…
Cancel
Save