diff options
| author | Jonathan Bauer | 2011-04-13 18:19:53 +0200 |
|---|---|---|
| committer | Jonathan Bauer | 2011-04-13 18:19:53 +0200 |
| commit | ac32b9b876e5f44f4c1a31f18c11dc06004aeee9 (patch) | |
| tree | 526d9cc4613abedb0db2ae677c910d7f0c37933a /src/main.cpp | |
| parent | cursor hidden until URL loaded (diff) | |
| download | fbgui-ac32b9b876e5f44f4c1a31f18c11dc06004aeee9.tar.gz fbgui-ac32b9b876e5f44f4c1a31f18c11dc06004aeee9.tar.xz fbgui-ac32b9b876e5f44f4c1a31f18c11dc06004aeee9.zip | |
skip trigger checks if trigger is already present
Diffstat (limited to 'src/main.cpp')
| -rw-r--r-- | src/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 76d899c..c816157 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -173,7 +173,8 @@ int main(int argc, char *argv[]) qxtLog->debug() << "serialLocation: " << serialLocation.toUtf8(); qxtLog->debug() << "*******************************************"; - app.setOverrideCursor(QCursor(Qt::BlankCursor)); + // set invisible cursor + qApp->setOverrideCursor(QCursor(Qt::BlankCursor)); // start fbgui fbgui gui; |
