Your ROOT_URL in app.ini is http://git.osmesh.ru/ but you are visiting https://git.osmesh.ru/MOS/OpenBoard/commit/45931ab29accb3e1b7fddb5a6531662630bc4993?style=unified&whitespace=ignore-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

At the first time the switch on the desktop mode is done the stylus palette is maximized

preferencesAboutTextFull
Claudio Valerio 13 years ago
parent 1aac137f3e
commit 45931ab29a
  1. 4
      src/desktop/UBDesktopAnnotationController.cpp

@ -62,7 +62,7 @@ UBDesktopAnnotationController::UBDesktopAnnotationController(QObject *parent, UB
, mDesktopMarkerPalette(NULL)
, mDesktopEraserPalette(NULL)
, mRightPalette(rightPalette)
, mWindowPositionInitialized(0)
, mWindowPositionInitialized(false)
, mIsFullyTransparent(false)
, mDesktopToolsPalettePositioned(false)
, mPendingPenButtonPressed(false)
@ -291,6 +291,7 @@ void UBDesktopAnnotationController::showWindow()
mDesktopPalette->move(5, desktopRect.top() + 150);
mWindowPositionInitialized = true;
mDesktopPalette->maximizeMe();
}
updateBackground();
@ -719,7 +720,6 @@ void UBDesktopAnnotationController::switchCursor(const int tool)
*/
void UBDesktopAnnotationController::onDesktopPaletteMaximized()
{
// Pen
UBActionPaletteButton* pPenButton = mDesktopPalette->getButtonFromAction(UBApplication::mainWindow->actionPen);
if(NULL != pPenButton)

Loading…
Cancel
Save