Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gio: more ergonomic ActionEntry initialization #1409

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on May 23, 2024

  1. gio: more ergonomic ActionEntry initialization

    This aligns the initialization with other `gio` and `gtk4` builders.
    
    Before:
    ```rs
    ActionEntry::builder("name").build()
    ```
    
    Proposed:
    ```rs
    ActionEntry::new("name")`
    ActionEntry::builder().name("name").build()
    ```
    
    `ActionEntryBuilder` implements `Default` to satisfy Clippy/CI.
    allan2 committed May 23, 2024
    Configuration menu
    Copy the full SHA
    4305fe6 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    76ca415 View commit details
    Browse the repository at this point in the history