Skip to content

Commit

Permalink
Add '₽' to Russian layout and to the Fn layer
Browse files Browse the repository at this point in the history
Other currencies are moved on the Fn layer for consistency with the
compose key.
  • Loading branch information
Julow committed Oct 21, 2023
1 parent d594242 commit 2d164ca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion res/xml/cyrl_jcuken_ru.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<key key0="п"/>
<key key0="р"/>
<key key0="о"/>
<key key0="л"/>
<key key0="л" key1=""/>
<key key0="д" key2="-" key3="_"/>
<key key0="ж" key2="=" key3="+"/>
<key key0="э" key2="|" key3="\\"/>
Expand Down
5 changes: 3 additions & 2 deletions srcs/juloo.keyboard2/KeyModifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -242,9 +242,10 @@ private static String apply_fn_char(char c)
case 'r': return "₹";
case 'y': return "¥";
case 'c': return "¢";
case 'p': return "₱";
case 'p': return "₽";
case 'b': return "₱";
case 'h': return "₴";
case 'b': return "₿";
case 'z': return "₿";
case '€': case '£': return "removed"; // Avoid showing these twice
// alternating greek letters
case 'π': return "ϖ";
Expand Down

0 comments on commit 2d164ca

Please sign in to comment.