fix: path preference rows text wrap

This commit is contained in:
Gabriele Musco 2023-12-27 11:02:53 +00:00
commit ee071d1e25

View file

@ -179,6 +179,7 @@ pub fn path_row<F: Fn(Option<String>) + 'static + Clone>(
None => "(None)", None => "(None)",
Some(p) => p.as_str(), Some(p) => p.as_str(),
}) })
.wrap(true)
.build(); .build();
row.add_suffix(path_label); row.add_suffix(path_label);