|
2019-12-20
, 11:10
|
|
Posts: 89 |
Thanked: 532 times |
Joined on Sep 2015
|
#22
|
With a (traditional) dark Ambience, the popup keys on the keyboard show white-on-white, suddenly after installing Nuuksio. Not very practical. Only light Ambiences work for typing text now.
(E.g. a long press on A shows a popup of additional characters including @. Or a long press on space bar shows available languages/keyboards.)
Can anyone confirm? I haven't done anything with any patches. I have a self adopted keyboard showing numbers on the popups of the top row, but it happens with all keyboards.
|
2019-12-20
, 14:51
|
Posts: 959 |
Thanked: 3,427 times |
Joined on Apr 2012
|
#23
|
|
2019-12-21
, 13:34
|
Posts: 301 |
Thanked: 531 times |
Joined on Aug 2010
@ The Netherlands
|
#24
|
import QtQuick 2.0 import com.jolla.keyboard 1.0 import ".." KeyboardLayout { splitSupported: true KeyboardRow { CharacterKey { caption: "q"; captionShifted: "Q"; symView: "1"; symView2: "€"; accents: "q1"; accentsShifted: "Q1" } CharacterKey { caption: "w"; captionShifted: "W"; symView: "2"; symView2: "£"; accents: "w2"; accentsShifted: "W2" } CharacterKey { caption: "e"; captionShifted: "E"; symView: "3"; symView2: "$"; accents: "eèêéë€3"; accentsShifted: "EÈÊÉË€3" } CharacterKey { caption: "r"; captionShifted: "R"; symView: "4"; symView2: "¥"; accents: "r4"; accentsShifted: "R4" } CharacterKey { caption: "t"; captionShifted: "T"; symView: "5"; symView2: "₹"; accents: "t5"; accentsShifted: "T5" } CharacterKey { caption: "y"; captionShifted: "Y"; symView: "6"; symView2: "%"; accents: "y6"; accentsShifted: "Y6" } CharacterKey { caption: "u"; captionShifted: "U"; symView: "7"; symView2: "<"; accents: "uü7"; accentsShifted: "UÜ7" } CharacterKey { caption: "i"; captionShifted: "I"; symView: "8"; symView2: ">"; accents: "iï8"; accentsShifted: "IÏ8" } CharacterKey { caption: "o"; captionShifted: "O"; symView: "9"; symView2: "["; accents: "oòôóöº9"; accentsShifted: "OÒÔÓÖº9" } CharacterKey { caption: "p"; captionShifted: "P"; symView: "0"; symView2: "]"; accents: "p0"; accentsShifted: "P0" } } KeyboardRow { splitIndex: 5 CharacterKey { caption: "a"; captionShifted: "A"; symView: "*"; symView2: "`"; accents: "aàâáä@"; accentsShifted: "AÀÂÁÄ@" } CharacterKey { caption: "s"; captionShifted: "S"; symView: "#"; symView2: "^"; accents: "sß$"; accentsShifted: "S$" } CharacterKey { caption: "d"; captionShifted: "D"; symView: "+"; symView2: "|" } CharacterKey { caption: "f"; captionShifted: "F"; symView: "-"; symView2: "_" } CharacterKey { caption: "g"; captionShifted: "G"; symView: "="; symView2: "§" } CharacterKey { caption: "h"; captionShifted: "H"; symView: "("; symView2: "{" } CharacterKey { caption: "j"; captionShifted: "J"; symView: ")"; symView2: "}" } CharacterKey { caption: "k"; captionShifted: "K"; symView: "!"; symView2: "¡" } CharacterKey { caption: "l"; captionShifted: "L"; symView: "?"; symView2: "¿"; accents: "l%*_&+-#'\""; accentsShifted: "L%*_&+-#'\"" } } KeyboardRow { splitIndex: 5 ShiftKey {} CharacterKey { caption: "z"; captionShifted: "Z"; symView: "@"; symView2: "«" } CharacterKey { caption: "x"; captionShifted: "X"; symView: "&"; symView2: "»" } CharacterKey { caption: "c"; captionShifted: "C"; symView: "/"; symView2: "\""; accents: "cç"; accentsShifted: "CÇ" } CharacterKey { caption: "v"; captionShifted: "V"; symView: "\\"; symView2: "“" } CharacterKey { caption: "b"; captionShifted: "B"; symView: "'"; symView2: "”" } CharacterKey { caption: "n"; captionShifted: "N"; symView: ";"; symView2: "„"; accents: "nñ"; accentsShifted: "NÑ" } CharacterKey { caption: "m"; captionShifted: "M"; symView: ":"; symView2: "~" } BackspaceKey {} } KeyboardRow { splitIndex: 3 SymbolKey {} ContextAwareCommaKeyX {} SpacebarKey {} SpacebarKey { active: splitActive languageLabel: "" } CharacterKey { caption: "." captionShifted: "." accents: "./]})>:!?" accentsShifted: "./]})>:!?" implicitWidth: punctuationKeyWidth fixedWidth: !splitActive separator: SeparatorState.HiddenSeparator } EnterKey {} } }
import QtQuick 2.0 import com.meego.maliitquick 1.0 import com.jolla.keyboard 1.0 CharacterKey { caption: MInputMethodQuick.contentType === Maliit.UrlContentType ? "/" : MInputMethodQuick.contentType === Maliit.EmailContentType ? "@" : "," captionShifted: caption symView: "," symView2: "," accents: ",\\;([{<" accentsShifted: ",\\;([{<" implicitWidth: punctuationKeyWidth fixedWidth: !splitActive separator: SeparatorState.HiddenSeparator }
|
2020-01-08
, 06:51
|
Posts: 1,313 |
Thanked: 2,977 times |
Joined on Jun 2011
@ Finland
|
#25
|
|
2020-01-08
, 08:08
|
|
Posts: 6,447 |
Thanked: 20,981 times |
Joined on Sep 2012
@ UK
|
#26
|
|
2020-01-12
, 13:06
|
Posts: 26 |
Thanked: 46 times |
Joined on Jul 2014
|
#27
|
|
2020-02-02
, 12:16
|
Posts: 72 |
Thanked: 194 times |
Joined on Apr 2011
@ Norway
|
#28
|
The Following 4 Users Say Thank You to hhbbap For This Useful Post: | ||
|
2020-02-03
, 09:03
|
Community Council |
Posts: 4,920 |
Thanked: 12,867 times |
Joined on May 2012
@ Southerrn Finland
|
#29
|
Could be caused by CS (Circuit Switched) fallback: Phone normally on 4G, but switch to 2G/3G for native audio calls because (roaming) operator is not supporting VoLTE for this model. Less noticeable for outgoing call. Check if it is same delay on incoming calls if you are on 2G/3G network.
The Following 2 Users Say Thank You to juiceme For This Useful Post: | ||
|
2020-02-04
, 18:36
|
Community Council |
Posts: 4,920 |
Thanked: 12,867 times |
Joined on May 2012
@ Southerrn Finland
|
#30
|
The Following 4 Users Say Thank You to juiceme For This Useful Post: | ||
..oO(Don't just sit there standing around, pick up a shovel and sweep up!)Oo..