mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-02 09:35:28 +00:00
remove extra getters, give names to gobjects
This commit is contained in:
parent
ccbc82d2f5
commit
ff3f064534
12 changed files with 22 additions and 40 deletions
|
|
@ -70,7 +70,7 @@ impl Widget {
|
|||
EntryIconPosition::Primary => todo!(),
|
||||
EntryIconPosition::Secondary => {
|
||||
if go.is_some() {
|
||||
tab_action.load().activate(Some(&this.text()), true);
|
||||
tab_action.load.activate(Some(&this.text()), true);
|
||||
}
|
||||
}
|
||||
_ => println!("Undefined icon position"), // drop notice @TODO
|
||||
|
|
@ -82,7 +82,7 @@ impl Widget {
|
|||
});
|
||||
|
||||
entry.connect_activate(move |entry| {
|
||||
tab_action.load().activate(Some(&entry.text()), true);
|
||||
tab_action.load.activate(Some(&entry.text()), true);
|
||||
});
|
||||
|
||||
entry.connect_state_flags_changed({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue