Browse Source

document GridDirection

dynamic-grid
René Rössler 3 years ago
parent
commit
dfab28fe6d
  1. 4
      egui_extras/src/grid.rs

4
egui_extras/src/grid.rs

@ -5,6 +5,10 @@ use crate::{
};
use egui::Ui;
/// The direction in which cells are positioned in the grid.
///
/// In a horizontal grid cells are positions from left to right.
/// In a vertical grid cells are positions from top to bottom.
enum GridDirection {
Horizontal,
Vertical,

Loading…
Cancel
Save