change keyboard shortcuts & update deprecated gtk command
This commit is contained in:
parent
20a0c15caa
commit
9c2c34743f
4
config.h
4
config.h
|
@ -133,8 +133,8 @@ static struct {
|
|||
{ CTRL, KEY(f), show_finder },
|
||||
{ CTRL, KEY(n), finder_next },
|
||||
{ CTRL, KEY(N), finder_prev },
|
||||
{ CTRL, KEY(Left), halve_window },
|
||||
{ CTRL, KEY(Right), rebig_window },
|
||||
{ CTRL, KEY(Up), halve_window },
|
||||
{ CTRL, KEY(Down), rebig_window },
|
||||
{ CTRL, KEY(p), prettify },
|
||||
{ CTRL, KEY(s), save_uri_to_txt }
|
||||
};
|
||||
|
|
|
@ -245,7 +245,7 @@ void handle_signal_bar_press_enter(GtkEntry* self, GtkNotebook* notebook) /* con
|
|||
WEBKIT_FIND_OPTIONS_CASE_INSENSITIVE | WEBKIT_FIND_OPTIONS_WRAP_AROUND,
|
||||
G_MAXUINT);
|
||||
|
||||
gtk_widget_hide(GTK_WIDGET(bar.widget));
|
||||
gtk_widget_set_visible(GTK_WIDGET(bar.widget), 0);
|
||||
}
|
||||
|
||||
/* Shortcuts */
|
||||
|
@ -374,7 +374,7 @@ int handle_shortcut(func id)
|
|||
if (f == NULL) {
|
||||
printf("Error opening /opt/rosenrot/uris.txt");
|
||||
} else {
|
||||
fprintf(f, "%s", uri);
|
||||
fprintf(f, "%s\n", uri);
|
||||
fclose(f);
|
||||
webkit_web_view_evaluate_javascript(view, "alert('Saved current uri to /opt/rosenrot/uris.txt')", -1, NULL, "rosenrot-alert-numtabs", NULL, NULL, NULL);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user