We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
click_event_fn
iui.MenuItemConfig
The text was updated successfully, but these errors were encountered:
for these config structs, I just had to add: pub: before all the struct fields to get past this
pub:
Sorry, something went wrong.
No branches or pull requests
C:/fresh/v/editor/text_editor_app.v:24:4: warning: initalizing private field
click_event_fn
ofiui.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
The text was updated successfully, but these errors were encountered: