mirror of
https://github.com/TakeV-Lambda/dino.git
synced 2024-11-21 22:44:23 +00:00
Fix critical warning due to tooltip issue
This commit is contained in:
parent
1e23b7bbd2
commit
9e11bef219
1 changed files with 1 additions and 1 deletions
|
@ -445,7 +445,7 @@ public Widget? widget_if_tooltips_active(Widget w) {
|
||||||
return use_tooltips() ? w : null;
|
return use_tooltips() ? w : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
public string? string_if_tooltips_active(string s) {
|
public string? string_if_tooltips_active(string? s) {
|
||||||
return use_tooltips() ? s : null;
|
return use_tooltips() ? s : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue