the desktop palette is moved at least a 30px from the top boarder in oder to not overlap top bar on mac

preferencesAboutTextFull
Claudio Valerio 11 years ago
parent 7231d7833d
commit 8123279bdd
  1. 10
      src/desktop/UBDesktopPalette.cpp
  2. 4
      src/desktop/UBDesktopPalette.h

@ -101,6 +101,15 @@ UBDesktopPalette::~UBDesktopPalette()
} }
void UBDesktopPalette::adjustPosition()
{
QPoint pos = this->pos();
if(this->pos().y() < 30){
pos.setY(30);
moveInsideParent(pos);
}
}
void UBDesktopPalette::disappearForCapture() void UBDesktopPalette::disappearForCapture()
{ {
setWindowOpacity(0.0); setWindowOpacity(0.0);
@ -209,6 +218,7 @@ void UBDesktopPalette::showEvent(QShowEvent *event)
eraserIcon.addPixmap(QPixmap(":images/stylusPalette/eraserOnArrow.png"), QIcon::Normal, QIcon::On); eraserIcon.addPixmap(QPixmap(":images/stylusPalette/eraserOnArrow.png"), QIcon::Normal, QIcon::On);
UBApplication::mainWindow->actionEraser->setIcon(eraserIcon); UBApplication::mainWindow->actionEraser->setIcon(eraserIcon);
adjustPosition();
} }
void UBDesktopPalette::hideEvent(QHideEvent *event) void UBDesktopPalette::hideEvent(QHideEvent *event)

@ -35,7 +35,7 @@
*/ */
class UBDesktopPalette : public UBActionPalette class UBDesktopPalette : public UBActionPalette
{ {
Q_OBJECT; Q_OBJECT
public: public:
UBDesktopPalette(QWidget *parent, UBRightPalette* rightPalette); UBDesktopPalette(QWidget *parent, UBRightPalette* rightPalette);
@ -81,6 +81,8 @@ protected:
UBRightPalette* rightPalette; UBRightPalette* rightPalette;
void adjustPosition();
signals: signals:
void stylusToolChanged(int tool); void stylusToolChanged(int tool);

Loading…
Cancel
Save