@@ -116,7 +116,7 @@ void column_begin(const char* header, f32 widthFraction)
116
116
| OC_UI_STYLE_BORDER_COLOR
117
117
| OC_UI_STYLE_BORDER_SIZE
118
118
| OC_UI_STYLE_ROUNDNESS );
119
- oc_ui_box_begin (header , OC_UI_FLAG_DRAW_BACKGROUND | OC_UI_FLAG_DRAW_BORDER );
119
+ oc_ui_box_begin (header , OC_UI_FLAG_NONE );
120
120
121
121
oc_ui_style_next (& (oc_ui_style ){ .size .width = { OC_UI_SIZE_PARENT , 1 },
122
122
.layout .align .x = OC_UI_ALIGN_CENTER },
@@ -230,7 +230,7 @@ ORCA_EXPORT void oc_on_frame_refresh(void)
230
230
| OC_UI_STYLE_LAYOUT_MARGINS
231
231
| OC_UI_STYLE_LAYOUT_SPACING );
232
232
233
- oc_ui_container ("background" , OC_UI_FLAG_DRAW_BACKGROUND )
233
+ oc_ui_container ("background" , OC_UI_FLAG_NONE )
234
234
{
235
235
column ("Widgets" , 1.0 / 3 )
236
236
{
@@ -410,7 +410,7 @@ ORCA_EXPORT void oc_on_frame_refresh(void)
410
410
| OC_UI_STYLE_BORDER_SIZE
411
411
| OC_UI_STYLE_ROUNDNESS );
412
412
413
- oc_ui_panel ("log" , OC_UI_FLAG_DRAW_BACKGROUND | OC_UI_FLAG_DRAW_BORDER )
413
+ oc_ui_panel ("log" , OC_UI_FLAG_NONE )
414
414
{
415
415
oc_ui_style_next (& (oc_ui_style ){ .layout .margin .x = 16 ,
416
416
.layout .margin .y = 16 },
@@ -481,7 +481,7 @@ ORCA_EXPORT void oc_on_frame_refresh(void)
481
481
| OC_UI_STYLE_LAYOUT_MARGINS
482
482
| OC_UI_STYLE_BG_COLOR
483
483
| OC_UI_STYLE_ROUNDNESS );
484
- oc_ui_container ("styled_radios" , OC_UI_FLAG_DRAW_BACKGROUND | OC_UI_FLAG_DRAW_BORDER )
484
+ oc_ui_container ("styled_radios" , OC_UI_FLAG_NONE )
485
485
{
486
486
reset_next_radio_group_to_dark_theme (scratch .arena );
487
487
0 commit comments