generated from GarandPLG/rust-flake-template
Update cell widget layout to show b_level
Replace static spacing with dynamic `b_level` values for ZoomedIn and Default zoom levels, and remove redundant placeholder lines.
This commit is contained in:
@@ -132,16 +132,16 @@ impl CellWidget {
|
|||||||
|
|
||||||
match self.zoom_level {
|
match self.zoom_level {
|
||||||
ZoomLevel::ZoomedIn => {
|
ZoomLevel::ZoomedIn => {
|
||||||
text_area.push(Line::from(format!(" {} ", unit)));
|
text_area.push(Line::from(format!(" {} {} ", b_level, unit)));
|
||||||
text_area.push(Line::from(format!(" ")));
|
text_area.push(Line::from(format!(" ")));
|
||||||
text_area.push(Line::from(format!(" {} ", tag)));
|
text_area.push(Line::from(format!(" {} ", tag)));
|
||||||
text_area.push(Line::from(format!(" ")));
|
text_area.push(Line::from(format!(" ")));
|
||||||
text_area.push(Line::from(format!(" {} ", b_level)));
|
text_area.push(Line::from(format!(" ")));
|
||||||
}
|
}
|
||||||
ZoomLevel::Default => {
|
ZoomLevel::Default => {
|
||||||
text_area.push(Line::from(format!(" {} ", unit)));
|
text_area.push(Line::from(format!(" {} {} ", b_level, unit)));
|
||||||
text_area.push(Line::from(format!(" {} ", tag)));
|
text_area.push(Line::from(format!(" {} ", tag)));
|
||||||
text_area.push(Line::from(format!(" {} ", b_level)));
|
text_area.push(Line::from(format!(" ")));
|
||||||
}
|
}
|
||||||
ZoomLevel::ZoomedOut => {
|
ZoomLevel::ZoomedOut => {
|
||||||
text_area.push(Line::from(format!(" {} ", tag)));
|
text_area.push(Line::from(format!(" {} ", tag)));
|
||||||
|
|||||||
Reference in New Issue
Block a user