switch nfl and mlb location

This commit is contained in:
death916 2026-03-12 05:30:22 -07:00
parent e55e2240dd
commit 0b9f9c010f

View file

@ -187,10 +187,10 @@ impl Default for State {
let (weather, _) = panes let (weather, _) = panes
.split(pane_grid::Axis::Vertical, nba, PaneType::Weather) .split(pane_grid::Axis::Vertical, nba, PaneType::Weather)
.unwrap(); .unwrap();
let (nfl, _) = panes let (mlb, _) = panes
.split(pane_grid::Axis::Vertical, weather, PaneType::NflPane) .split(pane_grid::Axis::Vertical, weather, PaneType::MlbPane)
.unwrap(); .unwrap();
panes.split(pane_grid::Axis::Horizontal, nfl, PaneType::MlbPane); panes.split(pane_grid::Axis::Horizontal, mlb, PaneType::NflPane);
panes panes
}, },
} }