Change 3rd party uploader popup text capitalization (#3158)

This commit is contained in:
Auro
2021-08-14 06:08:55 -04:00
committed by GitHub
parent b3bb7e2d3e
commit 75458a1a25
+2 -1
View File
@@ -262,10 +262,11 @@ Split::Split(QWidget *parent)
if (getSettings()->askOnImageUpload.getValue()) if (getSettings()->askOnImageUpload.getValue())
{ {
QMessageBox msgBox; QMessageBox msgBox;
msgBox.setWindowTitle("Chatterino");
msgBox.setText("Image upload"); msgBox.setText("Image upload");
msgBox.setInformativeText( msgBox.setInformativeText(
"You are uploading an image to a 3rd party service not in " "You are uploading an image to a 3rd party service not in "
"control of the chatterino team. You may not be able to " "control of the Chatterino team. You may not be able to "
"remove the image from the site. Are you okay with this?"); "remove the image from the site. Are you okay with this?");
msgBox.addButton(QMessageBox::Cancel); msgBox.addButton(QMessageBox::Cancel);
msgBox.addButton(QMessageBox::Yes); msgBox.addButton(QMessageBox::Yes);