summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-11-02 14:36:31 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-11-02 14:36:31 (EDT)
commit00f9e06c1d7b65bc730b80a82cc05d3476f3c000 (patch)
tree8e2b473353b402bb74fa8ab501ba64f334ea0816 /src
parent72eba4dfd4477842655609e09477a8f46c99147f (diff)
downloadmarquee-00f9e06c1d7b65bc730b80a82cc05d3476f3c000.zip
marquee-00f9e06c1d7b65bc730b80a82cc05d3476f3c000.tar.gz
marquee-00f9e06c1d7b65bc730b80a82cc05d3476f3c000.tar.bz2
MqHistoryButton, MqDownloadsButton: Make insensitive
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);
}