From a0dd74d06de8258cd943565605bba9f65dde8db2 Mon Sep 17 00:00:00 2001 From: Leonid Date: Wed, 28 Feb 2024 11:15:12 +0100 Subject: [PATCH] Fix: SEGFAULT in UBROWSER_GUI_LEVEL_ALL Rebasing previous change 300649 from tizen.riscv Change-Id: I1a451fb87da5e45b9ffa3537cfce4f1eaa37dd66 Signed-off-by: Leonid --- tizen_src/ewk/ubrowser/window_ui.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tizen_src/ewk/ubrowser/window_ui.cc b/tizen_src/ewk/ubrowser/window_ui.cc index ff28560..ac2fe2c 100644 --- a/tizen_src/ewk/ubrowser/window_ui.cc +++ b/tizen_src/ewk/ubrowser/window_ui.cc @@ -144,12 +144,14 @@ void WindowUI::CreateTopBar() { &url_entry_color_.b, &url_entry_color_.a); evas_object_show(url_entry_); +#if !ARCH_CPU_RISCV64 // RISC-V Tizen seems to have a broken implementation for elm_separator_add if (browser_.GetGUILevel() >= Browser::UBROWSER_GUI_LEVEL_ALL) { Evas_Object* separator = elm_separator_add(urlbar_); elm_separator_horizontal_set(separator, EINA_TRUE); elm_box_pack_end(urlbar_, separator); evas_object_show(separator); } +#endif } void WindowUI::CreateBottomBar() { -- 2.7.4