Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ You can find its changes [documented below](#082---2023-01-27).

### Fixed

- `AddTab` is now properly exported from the `widget` module. ([#2351] by [@cbondurant])

### Visual

### Docs
Expand Down Expand Up @@ -1194,6 +1196,7 @@ Last release without a changelog :(
[#2345]: https://github.com/linebender/druid/pull/2345
[#2347]: https://github.com/linebender/druid/pull/2347
[#2348]: https://github.com/linebender/druid/pull/2348
[#2351]: https://github.com/linebender/druid/pull/2351
[#2352]: https://github.com/linebender/druid/pull/2352

[Unreleased]: https://github.com/linebender/druid/compare/v0.8.2...master
Expand Down
2 changes: 1 addition & 1 deletion druid/src/widget/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ pub use stepper::Stepper;
#[cfg(feature = "svg")]
pub use svg::{Svg, SvgData};
pub use switch::Switch;
pub use tabs::{TabInfo, Tabs, TabsEdge, TabsPolicy, TabsState, TabsTransition};
pub use tabs::{AddTab, TabInfo, Tabs, TabsEdge, TabsPolicy, TabsState, TabsTransition};
pub use textbox::TextBox;
pub use value_textbox::{TextBoxEvent, ValidationDelegate, ValueTextBox};
pub use view_switcher::ViewSwitcher;
Expand Down