* update TODO, remove shortcut stuff for now

This commit is contained in:
Dirk-Jan C. Binnema 2010-11-03 08:00:49 +02:00
parent ad46381a07
commit 1e30e0a602
2 changed files with 1 additions and 22 deletions

View File

@ -17,7 +17,7 @@
- [X] focus first msg after query
- [ ] sorting for columns
- [ ] add about menu
- [ ] make scrollbars automatic
- [X] make scrollbars automatic
# Local Variables:
# mode: org; org-startup-folded: t

View File

@ -180,27 +180,6 @@ mug_querybar (void)
return querybar;
}
#if 0
static GtkWidget*
mug_shortcuts (void)
{
GtkWidget *shortcuts;
shortcuts = gtk_vbutton_box_new ();
gtk_box_pack_start (GTK_BOX(shortcuts),
gtk_button_new_with_label ("Inbox"), FALSE, FALSE, 2);
gtk_box_pack_start (GTK_BOX(shortcuts),
gtk_button_new_with_label ("Archive"), FALSE, FALSE, 2);
gtk_box_pack_start (GTK_BOX(shortcuts),
gtk_button_new_with_label ("Sent"), FALSE, FALSE, 2);
gtk_button_box_set_layout (GTK_BUTTON_BOX(shortcuts), GTK_BUTTONBOX_START);
return shortcuts;
}
#endif
static GtkWidget*
mug_query_area (MugData *mugdata)