Compare commits
3 commits
647a672b25
...
11e229fa44
| Author | SHA1 | Date | |
|---|---|---|---|
| 11e229fa44 | |||
|
|
84f9dcbe0e | ||
|
|
4a22c9f3dc |
3 changed files with 20 additions and 2 deletions
12
Cargo.lock
generated
12
Cargo.lock
generated
|
|
@ -4888,6 +4888,16 @@ dependencies = [
|
||||||
"font-types 0.11.0",
|
"font-types 0.11.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "redox_event"
|
||||||
|
version = "0.4.5"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "3514da49aa6ca4cff5088a1b382ef3a0d9149964d29bb49ebd03fd66cc575a18"
|
||||||
|
dependencies = [
|
||||||
|
"bitflags 2.11.0",
|
||||||
|
"libredox",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "redox_syscall"
|
name = "redox_syscall"
|
||||||
version = "0.4.1"
|
version = "0.4.1"
|
||||||
|
|
@ -7581,7 +7591,7 @@ dependencies = [
|
||||||
"libredox",
|
"libredox",
|
||||||
"orbclient",
|
"orbclient",
|
||||||
"raw-window-handle",
|
"raw-window-handle",
|
||||||
"redox_syscall 0.7.2",
|
"redox_event",
|
||||||
"smol_str 0.3.5",
|
"smol_str 0.3.5",
|
||||||
"tracing",
|
"tracing",
|
||||||
"winit-core",
|
"winit-core",
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
a11y-zoom-move-continuously = A nézet folyamatosan követi a mutatót
|
a11y-zoom-move-continuously = A nézet folyamatosan követi a mutatót
|
||||||
a11y-zoom-move-onedge = A nézet csak akkor mozog, ha a mutató a szélen van
|
a11y-zoom-move-onedge = A nézet csak akkor mozog, ha a mutató eléri a szélét
|
||||||
a11y-zoom-move-centered = A nézet úgy mozog, hogy a mutató középen maradjon
|
a11y-zoom-move-centered = A nézet úgy mozog, hogy a mutató középen maradjon
|
||||||
a11y-zoom-settings = Nagyító beállításai…
|
a11y-zoom-settings = Nagyító beállításai…
|
||||||
grow-window = Növelés
|
grow-window = Növelés
|
||||||
|
|
|
||||||
|
|
@ -52,6 +52,14 @@ impl State {
|
||||||
action,
|
action,
|
||||||
Action::Shortcut(shortcuts::Action::Terminate)
|
Action::Shortcut(shortcuts::Action::Terminate)
|
||||||
| Action::Shortcut(shortcuts::Action::Debug)
|
| Action::Shortcut(shortcuts::Action::Debug)
|
||||||
|
| Action::Shortcut(shortcuts::Action::System(
|
||||||
|
shortcuts::action::System::InputSourceSwitch
|
||||||
|
| shortcuts::action::System::BrightnessDown
|
||||||
|
| shortcuts::action::System::BrightnessUp
|
||||||
|
| shortcuts::action::System::VolumeLower
|
||||||
|
| shortcuts::action::System::VolumeRaise
|
||||||
|
| shortcuts::action::System::Mute,
|
||||||
|
))
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue