diff options
| author | Sebastien Braun | 2010-10-10 22:09:29 +0200 |
|---|---|---|
| committer | Sebastien Braun | 2010-10-11 00:56:10 +0200 |
| commit | d75d1a3e507e6a4cc01367df4d7a77012819b95b (patch) | |
| tree | 56cadbc332d336c7689304991dcd347fc16230f4 /src/gui/frame.h | |
| parent | Fix broken formatting of InputEvent::toString() (diff) | |
| download | pvs-d75d1a3e507e6a4cc01367df4d7a77012819b95b.tar.gz pvs-d75d1a3e507e6a4cc01367df4d7a77012819b95b.tar.xz pvs-d75d1a3e507e6a4cc01367df4d7a77012819b95b.zip | |
Fix bug where pressing the closeUp-button sometimes results in no action.
Diffstat (limited to 'src/gui/frame.h')
| -rw-r--r-- | src/gui/frame.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gui/frame.h b/src/gui/frame.h index 8271670..4a3dd11 100644 --- a/src/gui/frame.h +++ b/src/gui/frame.h @@ -74,6 +74,8 @@ public Q_SLOTS: void setLock(); //void unlock(); void setDozent(); + void setCloseUp(bool value); + private Q_SLOTS: void remoteControlClicked(); void remoteControlAllClicked(); @@ -102,6 +104,7 @@ private: bool _isLocked; bool _dozent; int _ux, _uy; + bool _isCloseUp; // for remote control: QPoint _lastRecordedMousePosition; |
