Commit 45931ab2 authored by Claudio Valerio's avatar Claudio Valerio

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

parent 1aac137f
...@@ -62,7 +62,7 @@ UBDesktopAnnotationController::UBDesktopAnnotationController(QObject *parent, UB ...@@ -62,7 +62,7 @@ UBDesktopAnnotationController::UBDesktopAnnotationController(QObject *parent, UB
, mDesktopMarkerPalette(NULL) , mDesktopMarkerPalette(NULL)
, mDesktopEraserPalette(NULL) , mDesktopEraserPalette(NULL)
, mRightPalette(rightPalette) , mRightPalette(rightPalette)
, mWindowPositionInitialized(0) , mWindowPositionInitialized(false)
, mIsFullyTransparent(false) , mIsFullyTransparent(false)
, mDesktopToolsPalettePositioned(false) , mDesktopToolsPalettePositioned(false)
, mPendingPenButtonPressed(false) , mPendingPenButtonPressed(false)
...@@ -291,6 +291,7 @@ void UBDesktopAnnotationController::showWindow() ...@@ -291,6 +291,7 @@ void UBDesktopAnnotationController::showWindow()
mDesktopPalette->move(5, desktopRect.top() + 150); mDesktopPalette->move(5, desktopRect.top() + 150);
mWindowPositionInitialized = true; mWindowPositionInitialized = true;
mDesktopPalette->maximizeMe();
} }
updateBackground(); updateBackground();
...@@ -719,7 +720,6 @@ void UBDesktopAnnotationController::switchCursor(const int tool) ...@@ -719,7 +720,6 @@ void UBDesktopAnnotationController::switchCursor(const int tool)
*/ */
void UBDesktopAnnotationController::onDesktopPaletteMaximized() void UBDesktopAnnotationController::onDesktopPaletteMaximized()
{ {
// Pen // Pen
UBActionPaletteButton* pPenButton = mDesktopPalette->getButtonFromAction(UBApplication::mainWindow->actionPen); UBActionPaletteButton* pPenButton = mDesktopPalette->getButtonFromAction(UBApplication::mainWindow->actionPen);
if(NULL != pPenButton) if(NULL != pPenButton)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment