Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make `Theme::Custom` fields opaque | 2022-11-03 | 2 | -54/+63 | |
| | |||||
* | fix: arc example | 2022-11-03 | 1 | -1/+1 | |
| | |||||
* | fix: clippy lint ↵ | 2022-11-03 | 3 | -9/+12 | |
| | | | | https://rust-lang.github.io/rust-clippy/master/index.html#large_enum_variant | ||||
* | refactor: remove once_cell from styling example | 2022-11-03 | 2 | -14/+15 | |
| | |||||
* | fix: scrollable example | 2022-11-03 | 1 | -5/+14 | |
| | |||||
* | refactor: undo changes to radio | 2022-11-03 | 3 | -11/+22 | |
| | |||||
* | wip: Custom palette for built in theme | 2022-11-03 | 6 | -7/+39 | |
| | |||||
* | Merge pull request #1400 from nicksenger/lazy/cached | 2022-11-03 | 8 | -1/+677 | |
|\ | | | | | `Lazy` widget | ||||
| * | Rename `cached` example to `lazy` | 2022-11-03 | 3 | -1/+150 | |
| | | |||||
| * | Rename `SortOrder` to `Order` in `cached` example | 2022-11-03 | 1 | -20/+15 | |
| | | |||||
| * | Rename `iced_lazy::Cached` to `Lazy` :tada: | 2022-11-03 | 3 | -40/+50 | |
| | | |||||
| * | Improve layout of `cached` example | 2022-11-03 | 1 | -27/+32 | |
| | | |||||
| * | Increase default `padding` of `TextInput` | 2022-11-03 | 1 | -1/+1 | |
| | | |||||
| * | Add `padding` to main `column` in `cached` example | 2022-11-03 | 1 | -1/+2 | |
| | | |||||
| * | Move declaration of `SortOrder` in `cached` example | 2022-11-03 | 1 | -19/+19 | |
| | | |||||
| * | Remove `iced_native` dependency from `cached` example | 2022-11-03 | 1 | -1/+0 | |
| | | |||||
| * | Rename `pure_cached` example to `cached` | 2022-11-03 | 1 | -1/+1 | |
| | | |||||
| * | Implement `Widget::operate` for `lazy::Cached` | 2022-11-03 | 1 | -1/+17 | |
| | | |||||
| * | Diff children only when hash differs in `lazy::Cached` | 2022-11-03 | 1 | -5/+7 | |
| | | |||||
| * | lint | 2022-11-03 | 1 | -2/+2 | |
| | | |||||
| * | add example | 2022-11-03 | 3 | -0/+153 | |
| | | |||||
| * | feat: implement `Cached` widget | 2022-11-03 | 2 | -0/+346 | |
| | | |||||
* | | Merge pull request #1502 from icedrocket/master | 2022-11-03 | 1 | -0/+1 | |
|\ \ | |/ |/| | fix: enable `application` feature required in `iced_glutin` | ||||
| * | fix: enable `application` feature required in `iced_glutin` | 2022-11-02 | 1 | -0/+1 | |
| | | |||||
* | | Merge pull request #1471 from pop-os/cosmic-window-controls | 2022-11-03 | 3 | -0/+52 | |
|\ \ | |/ |/| | feat: Additional actions for window controls | ||||
| * | feat: Add window minimize support | 2022-10-11 | 3 | -0/+12 | |
| | | |||||
| * | feat: Add window maximize support | 2022-10-11 | 3 | -0/+24 | |
| | | |||||
| * | feat: Add window drag support from winit | 2022-10-11 | 3 | -0/+16 | |
| | | | | | | | | Exposes access to the winit window's window_drag method as an action. | ||||
* | | Merge pull request #1497 from ids1024/once_cell | 2022-11-01 | 6 | -17/+13 | |
|\ \ | | | | | | | Use `once_cell` instead of `lazy_static` | ||||
| * | | Remove patch version from `once_cell` dependency | 2022-11-01 | 2 | -2/+2 | |
| | | | |||||
| * | | Use `once_cell` instead of `lazy_static` | 2022-10-28 | 6 | -17/+13 | |
| | | | | | | | | | | | | | | | | | | This seems to be generally considered the preferred, idiomatic solution now. This is in the standard library behind a feature flag (apparently now called `std::sync::LazyLock`). | ||||
* | | | Merge pull request #1462 from wyatt-herkamp/master | 2022-11-01 | 5 | -11/+14 | |
|\ \ \ | | | | | | | | | Update `wgpu` to `0.14` and `wgpu_glyph` to `0.18` | ||||
| * | | | Fix inconsistent version format for `raw-window-handle` dependency | 2022-11-01 | 1 | -1/+1 | |
| | | | | |||||
| * | | | Remove inconsistent `wgpu` imports | 2022-11-01 | 2 | -5/+3 | |
| | | | | |||||
| * | | | Update `wgpu` to `0.14` and `wgpu_glyph` to `0.18` | 2022-11-01 | 5 | -11/+16 | |
|/ / / | |||||
* | | | Reset `is_pasting` for `TextInput` even when unfocused | 2022-10-29 | 1 | -0/+2 | |
| | | | |||||
* | | | Keep keyboard modifiers always in sync in `TextInput` | 2022-10-29 | 1 | -3/+1 | |
| | | | |||||
* | | | Merge pull request #1496 from tarkah/fix/dropdown-scrollable | 2022-10-29 | 1 | -3/+3 | |
|\ \ \ | |/ / |/| | | Fix drop down not closing when inside scrollable | ||||
| * | | Fix drop down not closing when inside scrollable | 2022-10-27 | 1 | -3/+3 | |
|/ / | | | | | | | | | | | | | and user clicks outside the scrollable. This is because the scrollable sets -1.0 on cursor.y for any events where cursor is outside it's bounds. I'm not sure why picklist had this logic to stay open on -1.0 / -1.0, any click outside the overlay should close it. | ||||
* | | Merge pull request #1480 from tarkah/more-pane-grid-fixes | 2022-10-19 | 2 | -20/+29 | |
|\ \ | | | | | | | More pane grid fixes | ||||
| * | | Use child layout | 2022-10-19 | 1 | -2/+4 | |
| | | | |||||
| * | | Eliminate unnecessary allocation | 2022-10-19 | 1 | -23/+23 | |
| | | | |||||
| * | | Render picked pane last | 2022-10-17 | 1 | -1/+6 | |
| | | | |||||
| * | | Fix pane grid mouse interactions | 2022-10-17 | 2 | -2/+4 | |
|/ / | | | | | | | | | - Use `grabbing` interaction while dragging - Ignore grab interaction when dragging is disabled | ||||
* | | Merge pull request #1463 from tarkah/fix/pane-grid-render-order | 2022-10-17 | 1 | -7/+7 | |
|\ \ | |/ |/| | Render pane grid titlebar after body | ||||
| * | Render pane grid titlebar after body | 2022-10-07 | 1 | -7/+7 | |
|/ | |||||
* | Merge pull request #1458 from AlistairKeiller/master | 2022-10-07 | 1 | -3/+4 | |
|\ | | | | | Fix wgpu README supported backends | ||||
| * | remove iced | 2022-10-06 | 1 | -20/+0 | |
| | | |||||
| * | add a link to wgpu supported platforms list | 2022-10-06 | 1 | -2/+3 | |
| | | |||||
| * | remove DX11 support from wgpu | 2022-10-06 | 2 | -1/+21 | |
|/ |