Skip to content

Commit

Permalink
Fix tooltip support
Browse files Browse the repository at this point in the history
  • Loading branch information
CryZe committed Oct 28, 2023
1 parent d6d99f3 commit 1acef2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion asr-derive/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ pub fn settings_macro(input: TokenStream) -> TokenStream {
field_tooltips.push(if tooltip_string.is_empty() {
quote! {}
} else {
quote! { asr::user_settings::set_tooltip(#ident_name, #tooltip_string); }
quote! { asr::settings::gui::set_tooltip(#ident_name, #tooltip_string); }
});
field_name_strings.push(ident_name);

Expand Down

0 comments on commit 1acef2e

Please sign in to comment.