diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-01-31 10:32:02 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-31 10:32:02 -0800 |
commit | fd33d6aa3f1f870b683557568a3dd780c2f25541 (patch) | |
tree | 0440586b87a86e9007a3c4bcde3a2fc7927f55cc /qt-ui/profile | |
parent | 66c4529088904c88d7ab14c94c187b131642b40d (diff) | |
download | subsurface-fd33d6aa3f1f870b683557568a3dd780c2f25541.tar.gz |
Hide tooltip when posting a profile to Facebook
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/profile')
-rw-r--r-- | qt-ui/profile/profilewidget2.cpp | 5 | ||||
-rw-r--r-- | qt-ui/profile/profilewidget2.h | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/qt-ui/profile/profilewidget2.cpp b/qt-ui/profile/profilewidget2.cpp index 924c800e7..57c89b99f 100644 --- a/qt-ui/profile/profilewidget2.cpp +++ b/qt-ui/profile/profilewidget2.cpp @@ -1039,6 +1039,11 @@ void ProfileWidget2::clearHandlers() } } +void ProfileWidget2::setToolTipVisibile(bool visible) +{ + toolTipItem->setVisible(visible); +} + void ProfileWidget2::setAddState() { if (currentState == ADD) diff --git a/qt-ui/profile/profilewidget2.h b/qt-ui/profile/profilewidget2.h index d594748cc..abcf9fd23 100644 --- a/qt-ui/profile/profilewidget2.h +++ b/qt-ui/profile/profilewidget2.h @@ -82,6 +82,7 @@ public: double getFontPrintScale(); void setFontPrintScale(double scale); void clearHandlers(); + void setToolTipVisibile(bool visible); State currentState; public |