summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/toolbars/navigation/downloads-button.c1
-rw-r--r--src/toolbars/navigation/history-button.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/toolbars/navigation/downloads-button.c b/src/toolbars/navigation/downloads-button.c
index b15909c..29d2884 100644
--- a/src/toolbars/navigation/downloads-button.c
+++ b/src/toolbars/navigation/downloads-button.c
@@ -55,6 +55,7 @@ mq_downloads_button_init(MqDownloadsButton *downloads_button)
"Downloads");
gtk_widget_set_tooltip_text(GTK_WIDGET(downloads_button),
"Show downloads");
+ gtk_widget_set_sensitive(GTK_WIDGET(downloads_button), FALSE); /*TODO*/
g_signal_connect(downloads_button, "clicked",
G_CALLBACK(clicked_cb), NULL);
}
diff --git a/src/toolbars/navigation/history-button.c b/src/toolbars/navigation/history-button.c
index 2be94b8..c48cc42 100644
--- a/src/toolbars/navigation/history-button.c
+++ b/src/toolbars/navigation/history-button.c
@@ -54,6 +54,7 @@ mq_history_button_init(MqHistoryButton *history_button)
gtk_tool_button_set_label(GTK_TOOL_BUTTON(history_button), "History");
gtk_widget_set_tooltip_text(GTK_WIDGET(history_button),
"Show browsing history");
+ gtk_widget_set_sensitive(GTK_WIDGET(history_button), FALSE); /*TODO*/
g_signal_connect(history_button, "clicked",
G_CALLBACK(clicked_cb), NULL);
}