Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Merge pull request #2628 from tarkah/fix/pane-grid-continuity | 2024-10-24 | 3 | -151/+194 | |
|\ | | | | | Fix/pane grid continuity | ||||
| * | Add `relabel` helper to `pane_grid::State` | 2024-10-24 | 1 | -14/+15 | |
| | | |||||
| * | Rename `state::Widget` to `pane_grid::Memory` | 2024-10-24 | 2 | -16/+15 | |
| | | |||||
| * | Fix `responsive` diffing when `Tree` is emptied by ancestors | 2024-10-24 | 1 | -1/+4 | |
| | | |||||
| * | Remove duplicated `maximized` state in `pane_grid` | 2024-10-24 | 2 | -45/+59 | |
| | | |||||
| * | Keep `Pane` associated to state / layout after swap | 2024-10-24 | 1 | -2/+18 | |
| | | | | | | | | | | | | | | State continuity is dependent on keeping a node associated to it's original `Pane` id. When splitting -> swapping nodes, we need to assign it back to the original `Pane` to enforce continuity. | ||||
| * | Retain widget state against incoming panes | 2024-10-24 | 2 | -125/+135 | |
| | | | | | | | | | | | | | | | | | | | | We can associate each state with a `Pane` and compare that against the new panes to remove states w/ respective panes which no longer exist. Because we always increment `Pane`, new states are always added to the end, so this retain + add new state approach will ensure continuity when panes are added & removed | ||||
| * | Use BTreeMap for Ord iteration of panes | 2024-10-24 | 1 | -4/+4 | |
|/ | | | | | This ensures continuity in how panes are iterated on when building widget state | ||||
* | Dismiss `large-enum-variant` lint | 2024-10-22 | 1 | -0/+3 | |
| | |||||
* | Update button Catalog and Style documentation (#2590) | 2024-10-17 | 1 | -0/+51 | |
| | | | | | | | | | | | | | | | * Update button Catalog and Style documentation * Clarified button documentation * fix code typo * Run `cargo fmt` * Fixed docs to pass tests --------- Co-authored-by: Héctor Ramón Jiménez <hector@hecrj.dev> | ||||
* | Fix new elided lifetime lint in the `beta` toolchain | 2024-10-17 | 2 | -2/+2 | |
| | |||||
* | Merge pull request #2639 from l-const/consecutive-click-distance | 2024-10-15 | 1 | -1/+1 | |
|\ | | | | | Introduce consecutive click distance check like other toolkit do such as gtk,qt, imgui. | ||||
| * | Introduce consecutive click distance like other toolkits such as gtk,qt, imgui. | 2024-10-14 | 1 | -1/+1 | |
|/ | |||||
* | Merge pull request #2632 from leo030303/fix_delete_key_bug | 2024-10-14 | 1 | -1/+3 | |
|\ | | | | | Fixed bug where delete key wasn't working in the text editor | ||||
| * | Fix `Binding::Delete` not triggering in `text_editor` | 2024-10-14 | 1 | -1/+3 | |
| | | |||||
* | | Merge pull request #2637 from Brady-Simon/style-partialeq | 2024-10-14 | 13 | -19/+19 | |
|\ \ | | | | | | | Add PartialEq derives for widget styles | ||||
| * | | Add `PartialEq` derives for widget styles | 2024-10-14 | 13 | -19/+19 | |
|/ / | |||||
* | | Fix `mouse::Cursor` fighting in `stack` widget | 2024-10-04 | 1 | -4/+2 | |
| | | |||||
* | | Fix `responsive`, `component`, and `lazy` always returning an `overlay` | 2024-10-04 | 3 | -61/+80 | |
| | | |||||
* | | Implement `Overlay::operate` for `responsive::Overlay` | 2024-10-04 | 1 | -0/+11 | |
| | | |||||
* | | Fix `Task::chain` when chained task is `Task::none` | 2024-10-04 | 1 | -1/+1 | |
|/ | |||||
* | Merge pull request #2623 from boondocklabs/markdown-lifetime | 2024-10-02 | 1 | -2/+2 | |
|\ | | | | | Change lifetime of markdown IntoIterator Item, as it does not need to live as long as the returned Element | ||||
| * | Change lifetime of markdown view IntoIterator Item, as it does not need to ↵ | 2024-10-01 | 1 | -2/+2 | |
| | | | | | | | | live as long as the returned Element. | ||||
* | | Merge pull request #2606 from tvolk131/qr_code_fixed_size | 2024-10-02 | 2 | -18/+60 | |
|\ \ | | | | | | | feat: set total size of QRCode | ||||
| * | | Make `cell_size` and `total_size` generic over `Pixels` in `qr_code` | 2024-10-02 | 1 | -6/+8 | |
| | | | |||||
| * | | Simplify total size logic in `qr_code` example | 2024-10-02 | 1 | -42/+38 | |
| | | | |||||
| * | | feat: set total size of QRCode | 2024-09-24 | 2 | -10/+54 | |
| |/ | |||||
* | | Merge pull request #2611 from tarkah/fix/ignore-out-of-viewport-text | 2024-10-02 | 2 | -22/+16 | |
|\ \ | | | | | | | Don't fill out of viewport text | ||||
| * | | Cull widget draw calls in `column` and `row` | 2024-10-02 | 3 | -26/+16 | |
| | | | |||||
| * | | Don't fill out of viewport text | 2024-09-27 | 1 | -0/+4 | |
| |/ | |||||
* | | Merge pull request #2608 from ibaryshnikov/haskell | 2024-10-02 | 2 | -0/+8 | |
|\ \ | | | | | | | added physical_key to KeyReleased event | ||||
| * | | Add `modified_key` to `keyboard::Event::KeyReleased` | 2024-10-02 | 2 | -0/+4 | |
| | | | |||||
| * | | added physical_key to KeyReleased event | 2024-09-26 | 2 | -0/+4 | |
| |/ | |||||
* | | Merge pull request #2619 from edwloef/master | 2024-10-02 | 1 | -1/+1 | |
|\ \ | | | | | | | Derive `Default` for `iced_wgpu::geometry::Cache` | ||||
| * | | Derive `Default` for `iced_wgpu::geometry::Cache` | 2024-10-02 | 1 | -1/+1 | |
| |/ | |||||
* | | Merge pull request #2615 from bbb651/wayland-file-dropped-doc | 2024-10-02 | 12 | -16/+28 | |
|\ \ | | | | | | | Document Wayland `File*` Events as Unsupported & Fix Typos | ||||
| * | | Fix various typos | 2024-09-29 | 11 | -16/+16 | |
| | | | | | | | | | | | | Using https://github.com/crate-ci/typos | ||||
| * | | Document `File{Dropped,Hovered,HoveredLeft}` as unsupported on wayland | 2024-09-29 | 1 | -0/+12 | |
| |/ | | | | | | | Blocked on https://github.com/rust-windowing/winit/issues/1881 | ||||
* | | Merge pull request #2617 from tvolk131/fix_circular_progress_skipping | 2024-10-02 | 1 | -2/+2 | |
|\ \ | |/ |/| | fix: circular progress no longer skips | ||||
| * | fix: circular progress no longer skips | 2024-09-29 | 1 | -2/+2 | |
|/ | |||||
* | Add support for double click event to MouseArea (#2602) | 2024-09-24 | 1 | -4/+48 | |
| | | | | | | | | | * feat(widget/mouse_area): add double_click event * Run `cargo fmt` --------- Co-authored-by: Héctor Ramón Jiménez <hector@hecrj.dev> | ||||
* | Merge pull request #2605 from Gobbel2000/frame_paste | 2024-09-24 | 2 | -0/+2 | |
|\ | | | | | Include images and saved meshes when pasting `Frame` | ||||
| * | Include images and saved meshes when pasting `Frame` | 2024-09-24 | 2 | -0/+2 | |
| | | | | | | | | | | | | | | | | `tiny_skia::Frame` was ignoring images in `Frame::paste`, making images not show up when created in a `with_clip` context. `wgpu::Frame` similarly did not pass through meshes in its paste method, that may have been saved from a nested `with_clip` call. | ||||
* | | Merge pull request #2601 from edwloef/master | 2024-09-24 | 1 | -0/+8 | |
|\ \ | |/ |/| | always increment solid/gradient count in wgpu mesh rendering | ||||
| * | always increment solid/gradient count in wgpu mesh rendering | 2024-09-22 | 1 | -0/+8 | |
| | | |||||
* | | Merge pull request #2598 from iced-rs/fix/shrink-cross-flex-layout | 2024-09-24 | 2 | -9/+44 | |
|\ \ | |/ |/| | Fix flex layout of `Fill` elements in a `Shrink` cross axis | ||||
| * | Fix flex layout of `Fill` elements in a `Shrink` cross axis | 2024-09-21 | 2 | -9/+44 | |
| | | | | | | | | | | | | Instead of collapsing, the `Fill` elements will fill the cross space allocated by the other `Shrink` elements present in the container. | ||||
* | | Merge pull request #2599 from iced-rs/replace-rc-with-arc-for-markdown | 2024-09-21 | 1 | -3/+3 | |
|\ \ | | | | | | | Replace `Rc` with `Arc` for `markdown` caching | ||||
| * | | Replace `Rc` with `Arc` for `markdown` caching | 2024-09-21 | 1 | -3/+3 | |
|/ / | |||||
* / | Remove broken links to `ECOSYSTEM.md` | 2024-09-21 | 2 | -6/+1 | |
|/ |