Skip to content

Commit

Permalink
misc: fix compile errors
Browse files Browse the repository at this point in the history
  • Loading branch information
SeaDve committed Sep 20, 2024
1 parent 7d63d11 commit b9d5252
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/item_row.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ mod imp {
return;
}

self.title.set(title);
self.title.replace(title);
obj.update_title_label();
obj.notify_title();
}
Expand All @@ -86,7 +86,7 @@ mod imp {
return;
}

self.warning_tooltip_text.set(warning_tooltip_text);
self.warning_tooltip_text.replace(warning_tooltip_text);
obj.update_warning_icon_tooltip_text();
obj.notify_warning_tooltip_text();
}
Expand Down

0 comments on commit b9d5252

Please sign in to comment.