diff options
author | Leandro A. F. Pereira <leandro@hardinfo.org> | 2009-04-25 10:06:07 -0300 |
---|---|---|
committer | Leandro A. F. Pereira <leandro@hardinfo.org> | 2009-04-25 10:06:07 -0300 |
commit | b9bc708591332baf2f347aa98af25e3408374d09 (patch) | |
tree | dd3e36097582ffd604b467275e3602fe92445776 /hardinfo2/callbacks.c | |
parent | 8871376f6dccc33a6769b45cec4f1922c44b6c59 (diff) |
Use parent windows when creating the Report, Network Updater and Remote windows.
Diffstat (limited to 'hardinfo2/callbacks.c')
-rw-r--r-- | hardinfo2/callbacks.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/hardinfo2/callbacks.c b/hardinfo2/callbacks.c index bc261b4e..c56d9a76 100644 --- a/hardinfo2/callbacks.c +++ b/hardinfo2/callbacks.c @@ -31,12 +31,16 @@ void cb_sync_manager() { - sync_manager_show(); + Shell *shell = shell_get_main_shell(); + + sync_manager_show(shell->window); } void cb_connect_to() { - remote_dialog_show(); + Shell *shell = shell_get_main_shell(); + + remote_dialog_show(shell->window); } void cb_save_graphic() |