mirror of https://github.com/BOINC/boinc.git
- MGR: Use rdesktop-vrdp on Linux, it is included with VirtualBox
and meant for what we are trying to do. - MGR: Remove the fullscreen flag on Windows. It might only be my machine which has refresh problems when launching in windowed mode. clientgui/ MainDocument.cpp svn path=/trunk/boinc/; revision=25069
This commit is contained in:
parent
346eff699c
commit
6a3ca34394
|
@ -567,3 +567,13 @@ Rom 15 Jan 2012
|
|||
|
||||
samples/vboxwrapper
|
||||
vboxwrapper.cpp
|
||||
|
||||
Rom 15 Jan 2012
|
||||
- MGR: Use rdesktop-vrdp on Linux, it is included with VirtualBox
|
||||
and meant for what we are trying to do.
|
||||
- MGR: Remove the fullscreen flag on Windows. It might only be
|
||||
my machine which has refresh problems when launching in
|
||||
windowed mode.
|
||||
|
||||
clientgui/
|
||||
MainDocument.cpp
|
||||
|
|
|
@ -1769,19 +1769,10 @@ int CMainDocument::WorkShowVMConsole(RESULT* result) {
|
|||
wxString strCommand;
|
||||
|
||||
#if defined(__WXMSW__)
|
||||
// There appears to be a bug when you launch the mstsc client against a
|
||||
// VirtualBox RDP server in windowed mode it fails to refresh the console
|
||||
// display and doesn't respond to keyboard/mouse events. Launching it in
|
||||
// fullscreen mode resolves the issue.
|
||||
//
|
||||
// I'll follow-up with a bug for VirtualBox.
|
||||
//
|
||||
// In the mean time, pass a command line parameter to go full screen.
|
||||
//
|
||||
strCommand = wxT("mstsc.exe /v:") + strConnection + wxT(" /f");
|
||||
strCommand = wxT("mstsc.exe /v:") + strConnection;
|
||||
wxExecute(strCommand);
|
||||
#elif defined(__WXGTK__)
|
||||
strCommand = wxT("rdesktop ") + strConnection;
|
||||
strCommand = wxT("rdesktop-vrdp ") + strConnection;
|
||||
wxExecute(strCommand);
|
||||
#elif defined(__WXMAC__)
|
||||
FSRef theFSRef;
|
||||
|
|
Loading…
Reference in New Issue