mirror of
https://github.com/subsurface/subsurface.git
synced 2025-01-19 06:15:26 +00:00
QML UI: always convert the cloud user name to lower case
Mixed case user names cause the connection to the cloud storage to fail. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
fcb93362ac
commit
854eb57ef5
1 changed files with 1 additions and 1 deletions
|
@ -904,7 +904,7 @@ QString QMLManager::cloudUserName() const
|
|||
|
||||
void QMLManager::setCloudUserName(const QString &cloudUserName)
|
||||
{
|
||||
m_cloudUserName = cloudUserName;
|
||||
m_cloudUserName = cloudUserName.toLower();
|
||||
emit cloudUserNameChanged();
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue