aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/fs/fs.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/fs/fs.c')
-rw-r--r--src/plugins/fs/fs.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/fs/fs.c b/src/plugins/fs/fs.c
index 19e83929..ccd0584c 100644
--- a/src/plugins/fs/fs.c
+++ b/src/plugins/fs/fs.c
@@ -414,6 +414,9 @@ void init_fs(struct GE_Context * e,
414 gtk_notebook_set_current_page(GTK_NOTEBOOK(book), 1); 414 gtk_notebook_set_current_page(GTK_NOTEBOOK(book), 1);
415 gtk_notebook_set_current_page(GTK_NOTEBOOK(book), num); 415 gtk_notebook_set_current_page(GTK_NOTEBOOK(book), num);
416 416
417 fs_summary_start();
418 fs_collection_start();
419 fs_namespace_start();
417 ctx = FSUI_start(ectx, 420 ctx = FSUI_start(ectx,
418 cfg, 421 cfg,
419 "gnunet-gtk", 422 "gnunet-gtk",
@@ -421,9 +424,6 @@ void init_fs(struct GE_Context * e,
421 YES, 424 YES,
422 &eventProcessor, 425 &eventProcessor,
423 NULL); 426 NULL);
424 fs_collection_start();
425 fs_summary_start();
426 fs_namespace_start();
427} 427}
428 428
429void done_fs() { 429void done_fs() {
@@ -433,9 +433,9 @@ void done_fs() {
433 = glade_xml_get_widget(getMainXML(), 433 = glade_xml_get_widget(getMainXML(),
434 "fsnotebook"); 434 "fsnotebook");
435 gtk_widget_hide(tab); 435 gtk_widget_hide(tab);
436 FSUI_stop(ctx);
436 fs_summary_stop(); 437 fs_summary_stop();
437 fs_namespace_stop(); 438 fs_namespace_stop();
438 FSUI_stop(ctx);
439} 439}
440 440
441/* end of fs.c */ 441/* end of fs.c */