Fixed weird tabbing behavior
This commit is contained in:
parent
5015362414
commit
3410f97499
11
src/wofi.c
11
src/wofi.c
@ -1060,7 +1060,7 @@ static gint do_sort(GtkFlowBoxChild* child1, GtkFlowBoxChild* child2, gpointer d
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void select_first(void) {
|
static void select_first(void) {
|
||||||
GtkFlowBoxChild* child = gtk_flow_box_get_child_at_index(GTK_FLOW_BOX(inner_box), 1);
|
GtkFlowBoxChild* child = gtk_flow_box_get_child_at_index(GTK_FLOW_BOX(inner_box), 0);
|
||||||
gtk_widget_grab_focus(GTK_WIDGET(child));
|
gtk_widget_grab_focus(GTK_WIDGET(child));
|
||||||
gtk_flow_box_select_child(GTK_FLOW_BOX(inner_box), GTK_FLOW_BOX_CHILD(child));
|
gtk_flow_box_select_child(GTK_FLOW_BOX(inner_box), GTK_FLOW_BOX_CHILD(child));
|
||||||
}
|
}
|
||||||
@ -1142,12 +1142,21 @@ static void move_forward(void) {
|
|||||||
select_first();
|
select_first();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
gtk_widget_child_focus(window, GTK_DIR_TAB_FORWARD);
|
gtk_widget_child_focus(window, GTK_DIR_TAB_FORWARD);
|
||||||
|
|
||||||
|
if(gtk_widget_has_focus(entry)) {
|
||||||
|
select_first();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void move_backward(void) {
|
static void move_backward(void) {
|
||||||
user_moved = true;
|
user_moved = true;
|
||||||
gtk_widget_child_focus(window, GTK_DIR_TAB_BACKWARD);
|
gtk_widget_child_focus(window, GTK_DIR_TAB_BACKWARD);
|
||||||
|
|
||||||
|
if(gtk_widget_has_focus(entry)) {
|
||||||
|
move_backward();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void move_pgup(void) {
|
static void move_pgup(void) {
|
||||||
|
Loading…
Reference in New Issue
Block a user