Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Binyamin Darshan Hcohen
libdazzle
Commits
04453379
Commit
04453379
authored
Aug 06, 2018
by
Christian Hergert
Browse files
dock-bin: fix direction alias
These were flipped.
parent
f9d8fdfa
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/panel/dzl-dock-bin.c
View file @
04453379
...
...
@@ -415,7 +415,7 @@ dzl_dock_bin_focus (GtkWidget *widget,
{
switch
(
dir
)
{
case
GTK_DIR_TAB_
FOR
WARD
:
case
GTK_DIR_TAB_
BACK
WARD
:
case
GTK_DIR_LEFT
:
if
(
child
->
type
==
DZL_DOCK_BIN_CHILD_CENTER
)
next_child
=
dzl_dock_bin_get_child_typed
(
self
,
DZL_DOCK_BIN_CHILD_LEFT
);
...
...
@@ -423,7 +423,7 @@ dzl_dock_bin_focus (GtkWidget *widget,
next_child
=
dzl_dock_bin_get_child_typed
(
self
,
DZL_DOCK_BIN_CHILD_CENTER
);
break
;
case
GTK_DIR_TAB_
BACK
WARD
:
case
GTK_DIR_TAB_
FOR
WARD
:
case
GTK_DIR_RIGHT
:
if
(
child
->
type
==
DZL_DOCK_BIN_CHILD_LEFT
)
next_child
=
dzl_dock_bin_get_child_typed
(
self
,
DZL_DOCK_BIN_CHILD_CENTER
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment