Fix a clippy nit
This commit is contained in:
parent
6b30e21f4e
commit
c26b3069e0
1 changed files with 1 additions and 1 deletions
|
@ -389,7 +389,7 @@ impl<'a> Widget for Checkbox<'a> {
|
|||
});
|
||||
}
|
||||
|
||||
let text_color = text_color.unwrap_or(visuals.text_color());
|
||||
let text_color = text_color.unwrap_or_else(|| visuals.text_color());
|
||||
ui.painter()
|
||||
.galley(text_cursor, galley, text_style, text_color);
|
||||
response
|
||||
|
|
Loading…
Reference in a new issue