summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Alan Fitton <ajf@eth0.org.uk>2011-09-08 17:39:52 +0000
committerGravatar Alan Fitton <ajf@eth0.org.uk>2011-09-08 17:39:52 +0000
commitdc3a89ca0755edce2031d8e283d17bce18190da1 (patch)
tree5072f2587b42c622320cef94b6da4a9131b424ff /src
parentc53890de4a8e23627292601a5260835efd94c705 (diff)
issue 86 - accidentally removed the signal handler for remote prefs button earlier.
Diffstat (limited to 'src')
-rw-r--r--src/trg-main-window.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/trg-main-window.c b/src/trg-main-window.c
index 1fef6bb..05208d4 100644
--- a/src/trg-main-window.c
+++ b/src/trg-main-window.c
@@ -515,6 +515,8 @@ static TrgToolbar *trg_main_window_toolbar_new(TrgMainWindow * win) {
g_signal_connect(b_props, "clicked", G_CALLBACK(open_props_cb), win);
g_signal_connect(b_local_prefs, "clicked",
G_CALLBACK(open_local_prefs_cb), win);
+ g_signal_connect(b_remote_prefs, "clicked",
+ G_CALLBACK(open_remote_prefs_cb), win);
return toolBar;
}