ui
ui copied to clipboard
Running editor gets warning that will become error
C:/fresh/v/editor/text_editor_app.v:24:4: warning: initalizing private field click_event_fn of iui.MenuItemConfig
22 | item := ui.MenuItem.new(
23 | text: theme.name
24 | click_event_fn: theme_click
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~
25 | )
26 | theme_menu.add_child(item)
Details: this will become an error after 2024-05-31
for these config structs, I just had to add:
pub: before all the struct fields to get past this