mirror of
https://github.com/labwc/labwc.git
synced 2026-03-20 05:34:12 -04:00
keyboard: set numlock to off by default
...to avoid surprises on Acer Aspire One laptops where the numeric keyboard does not physically exist but "overlaps" the qwerty keyboard. Reported-by: staryvyr on IRC Note: We do not like changing defaults, but feel that there is a good reason for this one.
This commit is contained in:
parent
968dc89277
commit
bb982dc0af
3 changed files with 3 additions and 3 deletions
|
|
@ -565,7 +565,7 @@ extending outward from the snapped edge.
|
||||||
|
|
||||||
*<keyboard><numlock>* [on|off]
|
*<keyboard><numlock>* [on|off]
|
||||||
When recognizing a new keyboard enable or disable Num Lock.
|
When recognizing a new keyboard enable or disable Num Lock.
|
||||||
Default is on.
|
Default is off.
|
||||||
|
|
||||||
*<keyboard layoutScope="">* [global|window]
|
*<keyboard layoutScope="">* [global|window]
|
||||||
Stores the keyboard layout either globally or per window and restores
|
Stores the keyboard layout either globally or per window and restores
|
||||||
|
|
|
||||||
|
|
@ -229,7 +229,7 @@
|
||||||
your favourite terminal or application launcher. See rc.xml for an example.
|
your favourite terminal or application launcher. See rc.xml for an example.
|
||||||
-->
|
-->
|
||||||
<keyboard>
|
<keyboard>
|
||||||
<numlock>on</numlock>
|
<numlock>off</numlock>
|
||||||
<layoutScope>global</layoutScope>
|
<layoutScope>global</layoutScope>
|
||||||
<repeatRate>25</repeatRate>
|
<repeatRate>25</repeatRate>
|
||||||
<repeatDelay>600</repeatDelay>
|
<repeatDelay>600</repeatDelay>
|
||||||
|
|
|
||||||
|
|
@ -1497,7 +1497,7 @@ rcxml_init(void)
|
||||||
|
|
||||||
rc.repeat_rate = 25;
|
rc.repeat_rate = 25;
|
||||||
rc.repeat_delay = 600;
|
rc.repeat_delay = 600;
|
||||||
rc.kb_numlock_enable = true;
|
rc.kb_numlock_enable = false;
|
||||||
rc.kb_layout_per_window = false;
|
rc.kb_layout_per_window = false;
|
||||||
rc.screen_edge_strength = 20;
|
rc.screen_edge_strength = 20;
|
||||||
rc.window_edge_strength = 20;
|
rc.window_edge_strength = 20;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue