summary refs log tree commit diff
path: root/src/TextInputWidget.cpp
diff options
context:
space:
mode:
authorDeepBlueV7.X <nicolas.werner@hotmail.de>2020-08-17 22:41:08 +0000
committerGitHub <noreply@github.com>2020-08-17 22:41:08 +0000
commitb5d406ad803511a17e478e41dfc97b4a64cbcd88 (patch)
treebca945e21f5d2823d3fbec5894acf9f0562aaaa7 /src/TextInputWidget.cpp
parentTranslated using Weblate (English) (diff)
parentStop SendFile and Call buttons swapping places on file upload (diff)
downloadnheko-b5d406ad803511a17e478e41dfc97b4a64cbcd88.tar.xz
Merge pull request #259 from trilene/voip
Stop SendFile and Call buttons swapping places on file upload
Diffstat (limited to 'src/TextInputWidget.cpp')
-rw-r--r--src/TextInputWidget.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TextInputWidget.cpp b/src/TextInputWidget.cpp

index a3392170..633b12ba 100644 --- a/src/TextInputWidget.cpp +++ b/src/TextInputWidget.cpp
@@ -633,7 +633,7 @@ TextInputWidget::showUploadSpinner() topLayout_->removeWidget(sendFileBtn_); sendFileBtn_->hide(); - topLayout_->insertWidget(0, spinner_); + topLayout_->insertWidget(1, spinner_); spinner_->start(); } @@ -641,7 +641,7 @@ void TextInputWidget::hideUploadSpinner() { topLayout_->removeWidget(spinner_); - topLayout_->insertWidget(0, sendFileBtn_); + topLayout_->insertWidget(1, sendFileBtn_); sendFileBtn_->show(); spinner_->stop(); }