diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-11-05 12:51:05 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-11-05 13:45:51 -0800 |
commit | e28f171731122e6ce1c3d9b1173be5d62dd34e6b (patch) | |
tree | 78f83d7b52ce541c9c40163eb32df5a55f59daaf /subsurface-desktop-main.cpp | |
parent | 281a0a945ad87cb77a98ec30e2e2e29aecac4e89 (diff) | |
download | subsurface-e28f171731122e6ce1c3d9b1173be5d62dd34e6b.tar.gz |
Untangle Profile from MainWindow: refresh display
Instead of directly calling into the MainWindow, redirect this via a
signal so Subsurface mobile can hook it up as needed.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface-desktop-main.cpp')
-rw-r--r-- | subsurface-desktop-main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/subsurface-desktop-main.cpp b/subsurface-desktop-main.cpp index bbe602848..fed774303 100644 --- a/subsurface-desktop-main.cpp +++ b/subsurface-desktop-main.cpp @@ -90,6 +90,7 @@ int main(int argc, char **argv) QObject::connect(m->graphics(), &ProfileWidget2::showError, m, &MainWindow::showError, Qt::AutoConnection); QObject::connect(m->graphics(), &ProfileWidget2::disableShortcuts, m, &MainWindow::disableShortcuts, Qt::AutoConnection); QObject::connect(m->graphics(), &ProfileWidget2::enableShortcuts, m, &MainWindow::enableShortcuts, Qt::AutoConnection); + QObject::connect(m->graphics(), &ProfileWidget2::refreshDisplay, m, &MainWindow::refreshDisplay, Qt::AutoConnection); if (verbose > 0) print_files(); if (!quit) |