mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-15 17:20:08 +00:00
remove extra brackets
This commit is contained in:
parent
3db4c2c6be
commit
ad89d08f0f
@ -71,16 +71,12 @@ impl Window {
|
||||
|
||||
action.close().connect_activate({
|
||||
let tab = tab.clone();
|
||||
move |position| {
|
||||
tab.close(position);
|
||||
}
|
||||
move |position| tab.close(position)
|
||||
});
|
||||
|
||||
action.close_all().connect_activate({
|
||||
let tab = tab.clone();
|
||||
move |_| {
|
||||
tab.close_all();
|
||||
} // @TODO position not in use
|
||||
move |_| tab.close_all()
|
||||
});
|
||||
|
||||
action.history_back().connect_activate({
|
||||
|
Loading…
x
Reference in New Issue
Block a user