Change placeholder

This commit is contained in:
Julien Wadel 2020-02-17 13:57:59 +01:00
parent 6bda98b8f2
commit 0040c078b2
3 changed files with 9 additions and 5 deletions

View file

@ -161,4 +161,8 @@ If you want you can contribute at: https://www.transifex.com/belledonne-communic
Launch the application with `--verbose` parameter to get full logs and send it with your request.
On some OS (like Fedora 22 and later), they disable Qt debug output by default. To get full output, you need to create `~/.config/QtProject/qtlogging.ini` and add :
[Rules]
*.debug=true
qt.*.debug=false

View file

@ -38,7 +38,7 @@ mkdir -p build-desktop
#SDK building
cd build-desktop
#cmake .. -DLINPHONESDK_PLATFORM=Desktop -DCMAKE_BUILD_TYPE=RelWithDebInfo -DENABLE_VPX=YES -DENABLE_GPL_THIRD_PARTIES=YES -DENABLE_NON_FREE_CODECS=YES -DENABLE_AMRNB=YES -DENABLE_AMRWB=YES -DENABLE_G729=YES -DENABLE_GSM=YES -DENABLE_ILBC=YES -DENABLE_ISAC=YES -DENABLE_SILK=YES -DENABLE_SPEEX=YES -DENABLE_H263=YES -DENABLE_H263P=YES -DENABLE_MPEG4=YES -DENABLE_OPENH264=YES -DENABLE_FFMPEG=YES -DENABLE_VIDEO=YES -DENABLE_GL=YES -DENABLE_OPUS=NO
cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo
cmake .. -DCMAKE_BUILD_TYPE=RelWithDebInfo -DENABLE_OPUS=NO
cmake --build . --target sdk --config RelWithDebInfo --parallel 10
#MiniZip Building

View file

@ -58,7 +58,7 @@ DialogPlus {
TextField {
id: sipAddress
placeholderText: 'sip:name@sip.linphone.org'
placeholderText: 'sip:name@sip.example.net'
error: dialog._sipAddressOk ? '' : qsTr('invalidSipAddress')
@ -74,8 +74,8 @@ DialogPlus {
TextField {
id: serverAddress
placeholderText: 'sip:sip.linphone.org'
error: dialog._serverAddressOk ? '' : qsTr('invalidServerAddress')
placeholderText: 'sip:sip.example.net'
error: dialog._serverAddressOk ? '' : qsTr('invalidServerAddress')
onActiveFocusChanged: if(!activeFocus && dialog._serverAddressOk) Logic.handleTransportChanged(transport.model[transport.currentIndex])
onTextChanged: Logic.handleServerAddressChanged(text)
Keys.onReturnPressed: nextItemInFocusChain().forceActiveFocus()
@ -210,7 +210,7 @@ DialogPlus {
TextField {
id: stunServer
placeholderText: 'stun.linphone.org'
placeholderText: 'stun.example.net'
readOnly: !iceEnabled.checked
Keys.onReturnPressed: nextItemInFocusChain().forceActiveFocus()