
This PR enables scrolling horizontally in the tab bar. Currently this requires holding down <kbd>Shift</kbd> for the scroll to activate. We'll need to look into this. Scrolling also currently works when there is a split in the editor, as the non-split view goes down a different rendering path that does not constrain the pane width, which breaks a number of things. Release Notes: - N/A
21 lines
377 B
Rust
21 lines
377 B
Rust
mod auto_height_editor;
|
|
mod cursor;
|
|
mod focus;
|
|
mod kitchen_sink;
|
|
mod overflow_scroll;
|
|
mod picker;
|
|
mod scroll;
|
|
mod text;
|
|
mod viewport_units;
|
|
mod z_index;
|
|
|
|
pub use auto_height_editor::*;
|
|
pub use cursor::*;
|
|
pub use focus::*;
|
|
pub use kitchen_sink::*;
|
|
pub use overflow_scroll::*;
|
|
pub use picker::*;
|
|
pub use scroll::*;
|
|
pub use text::*;
|
|
pub use viewport_units::*;
|
|
pub use z_index::*;
|