When using the focus path entry and file list keyboard shortcuts, make sure the filebrowser tab is the current notebook tab in the sidebar (closes #2402290).

git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@3341 ea778897-0a13-0410-b9d1-a72fbfd435f5
This commit is contained in:
Enrico Tröger 2008-12-07 19:12:27 +00:00
parent 7c6ff4d5bb
commit 5394a14f4f
2 changed files with 9 additions and 2 deletions

View File

@ -13,6 +13,10 @@
Add View->Editor submenu and group there the Line numbers,
Markers margin, Show white space, Show line endings and Show
indentation guides settings.
* plugins/filebrowser.c:
When using the focus path entry and file list keyboard shortcuts,
make sure the filebrowser tab is the current notebook tab in the
sidebar (closes #2402290).
2008-12-06 Enrico Tröger <enrico(dot)troeger(at)uvena(dot)de>

View File

@ -85,6 +85,8 @@ static gchar *open_cmd; /* in locale-encoding */
static gchar *config_file;
static gchar *filter = NULL;
static gint page_number = 0;
static struct
{
GtkWidget *open;
@ -865,6 +867,7 @@ static void load_settings(void)
static void kb_activate(guint key_id)
{
gtk_notebook_set_current_page(GTK_NOTEBOOK(geany->main_widgets->sidebar_notebook), page_number);
switch (key_id)
{
case KB_FOCUS_FILE_LIST:
@ -906,8 +909,8 @@ void plugin_init(GeanyData *data)
gtk_container_add(GTK_CONTAINER(file_view_vbox), scrollwin);
gtk_widget_show_all(file_view_vbox);
gtk_notebook_append_page(GTK_NOTEBOOK(geany->main_widgets->sidebar_notebook), file_view_vbox,
gtk_label_new(_("Files")));
page_number = gtk_notebook_append_page(GTK_NOTEBOOK(geany->main_widgets->sidebar_notebook),
file_view_vbox, gtk_label_new(_("Files")));
load_settings();