diff options
| author | Jules Aguillon | 2025-06-18 00:49:34 +0200 |
|---|---|---|
| committer | GitHub | 2025-06-18 00:49:34 +0200 |
| commit | 71d278402644fd16a2f407518346746f16538de6 (patch) | |
| tree | 8df119b68d7d0f15b38eebec6277f756dcf01457 /srcs/layouts/latn_bepo_fr.xml | |
| parent | f9b844e98864fc1223687c6836a26e773a80c99f (diff) | |
| download | unexpected-keyboard-71d278402644fd16a2f407518346746f16538de6.tar.gz unexpected-keyboard-71d278402644fd16a2f407518346746f16538de6.zip | |
Add <row scale=""> attribute (#1018)
* Add <row scale=""> attribute
Scale the width of the keys in the row to match a value. Useful to
remove space on the right of the row without adding a 'width' attribute
to each key.
* layouts: Use the 'scale=""' attribute in builtin layouts
This removes the very specific 'width' values.
Diffstat (limited to 'srcs/layouts/latn_bepo_fr.xml')
| -rw-r--r-- | srcs/layouts/latn_bepo_fr.xml | 44 |
1 files changed, 22 insertions, 22 deletions
diff --git a/srcs/layouts/latn_bepo_fr.xml b/srcs/layouts/latn_bepo_fr.xml index e0e85f3..49566d0 100644 --- a/srcs/layouts/latn_bepo_fr.xml +++ b/srcs/layouts/latn_bepo_fr.xml @@ -1,29 +1,29 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- Inspired by the bépo layout, but adapted to smartphone --> <keyboard name="BEPO (Français)" script="latin"> - <row> - <key width="1.1" key0="b" key1="loc esc" key2="1" key4="|"/> - <key width="1.1" key0="é" key2="2" key4="è"/> - <key width="1.1" key0="p" key2="3"/> - <key width="1.1" key0="o" key2="4" key4="accent_circonflexe"/> - <key width="1.1" key0="v" key2="5" key4="{"/> - <key width="1.1" key0="d" key2="6" key4="}"/> - <key width="1.1" key0="l" key2="7" key4="("/> - <key width="1.1" key0="j" key2="8" key4=")"/> - <key width="1.1" key0="z" key2="9" key4="["/> - <key width="1.1" key0="w" key2="0" key4="]"/> + <row scale="11"> + <key key0="b" key1="loc esc" key2="1" key4="|"/> + <key key0="é" key2="2" key4="è"/> + <key key0="p" key2="3"/> + <key key0="o" key2="4" key4="accent_circonflexe"/> + <key key0="v" key2="5" key4="{"/> + <key key0="d" key2="6" key4="}"/> + <key key0="l" key2="7" key4="("/> + <key key0="j" key2="8" key4=")"/> + <key key0="z" key2="9" key4="["/> + <key key0="w" key2="0" key4="]"/> </row> - <row> - <key width="1.1" key0="a" key1="loc tab" key4="à"/> - <key width="1.1" key0="u" key1="$" key4="ù"/> - <key width="1.1" key0="i" key4="&"/> - <key width="1.1" key0="e" key1="+" key2="accent_trema" key4="€"/> - <key width="1.1" key0="c" key1="=" key4="ç"/> - <key width="1.1" key0="t" key1="^" key4=";"/> - <key width="1.1" key0="s" key4="!"/> - <key width="1.1" key0="r" key4="\?"/> - <key width="1.1" key0="n" key1="`" key2="'" key4=":"/> - <key width="1.1" key0="m" key2="""/> + <row scale="11"> + <key key0="a" key1="loc tab" key4="à"/> + <key key0="u" key1="$" key4="ù"/> + <key key0="i" key4="&"/> + <key key0="e" key1="+" key2="accent_trema" key4="€"/> + <key key0="c" key1="=" key4="ç"/> + <key key0="t" key1="^" key4=";"/> + <key key0="s" key4="!"/> + <key key0="r" key4="\?"/> + <key key0="n" key1="`" key2="'" key4=":"/> + <key key0="m" key2="""/> </row> <row> <key width="1.5" key0="shift" key2="loc capslock" key3="<"/> |
