Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Dorota Czaplejewicz
squeekboard
Commits
ba59a850
Commit
ba59a850
authored
Apr 19, 2011
by
Daiki Ueno
Browse files
Fix compilation error when --disable-atspi.
parent
b7999842
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/client.c
View file @
ba59a850
...
...
@@ -810,7 +810,11 @@ eekboard_client_load_keyboard_from_file (EekboardClient *client,
layout
=
eek_xml_layout_new
(
G_INPUT_STREAM
(
input
));
g_object_unref
(
input
);
#ifdef HAVE_ATSPI
retval
=
set_keyboard
(
client
,
!
client
->
follows_focus
,
layout
);
#else
retval
=
set_keyboard
(
client
,
TRUE
,
layout
);
#endif
g_object_unref
(
layout
);
return
retval
;
}
...
...
Write
Preview
Markdown
is supported
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