ecore-wayland; Fix formatting

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2014-09-17 09:17:03 -04:00
parent d645ea28c6
commit e1da3db8fa
1 changed files with 9 additions and 4 deletions

View File

@ -637,11 +637,16 @@ _ecore_wl_cb_handle_global(void *data, struct wl_registry *registry, unsigned in
/* FIXME: we should import the theme name from a config or env variable */
if (ewd->input)
ewd->cursor_theme = wl_cursor_theme_load(NULL, ewd->input->cursor_size,
ewd->wl.shm);
{
ewd->cursor_theme =
wl_cursor_theme_load(NULL, ewd->input->cursor_size, ewd->wl.shm);
}
else
ewd->cursor_theme = wl_cursor_theme_load(NULL, ECORE_WL_DEFAULT_CURSOR_SIZE,
ewd->wl.shm);
{
ewd->cursor_theme =
wl_cursor_theme_load(NULL, ECORE_WL_DEFAULT_CURSOR_SIZE,
ewd->wl.shm);
}
}
else if (!strcmp(interface, "wl_data_device_manager"))
{