Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting http://91.221.70.94:3000/MOS/OpenBoard/commit/5a4ba69c6ef2c74ddf99be5796981833f49321aa?style=split&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

fixed bug with capturing a part... on win32

preferencesAboutTextFull
Ivan Ilin 14 years ago
parent 48a3ef4e61
commit 5a4ba69c6e
  1. 3
      src/desktop/UBDesktopAnnotationController.cpp

@ -433,7 +433,10 @@ void UBDesktopAnnotationController::customCapture()
UBCustomCaptureWindow customCaptureWindow(mDesktopPalette); UBCustomCaptureWindow customCaptureWindow(mDesktopPalette);
// need to show the window before execute it to avoid some glitch on windows. // need to show the window before execute it to avoid some glitch on windows.
#ifndef Q_WS_WIN // Working only without this call on win32 desktop mode
customCaptureWindow.show(); customCaptureWindow.show();
#endif
if (customCaptureWindow.execute(getScreenPixmap()) == QDialog::Accepted) if (customCaptureWindow.execute(getScreenPixmap()) == QDialog::Accepted)
{ {

Loading…
Cancel
Save