Added system OSK support for Windows

preferencesAboutTextFull
Craig Watson 9 years ago
parent 5b7cf175e9
commit 138553bb30
  1. 7
      src/frameworks/UBPlatformUtils_win.cpp

@ -440,5 +440,10 @@ void UBPlatformUtils::showFullScreen(QWidget *pWidget)
void UBPlatformUtils::showOSK(bool show)
{
Q_UNUSED(show);
// No system OSK support yet
QString windir = qgetenv("WINDIR");
QString osk_path = windir+"\\System32\\osk.exe";
QProcess newProcess;
newProcess.startDetached("explorer.exe", QStringList() << osk_path);
}

Loading…
Cancel
Save