mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
miscelaneous changes
This commit is contained in:
parent
f3225275ea
commit
47afca2c71
|
@ -82,6 +82,11 @@ bool GenericListView::eventFilter(QObject * /*watched*/, QEvent *event)
|
|||
emit this->closeRequested();
|
||||
return true;
|
||||
}
|
||||
else if (key == Qt::Key_Escape)
|
||||
{
|
||||
emit this->closeRequested();
|
||||
return true;
|
||||
}
|
||||
else
|
||||
{
|
||||
return false;
|
||||
|
|
|
@ -75,6 +75,7 @@ ExternalToolsPage::ExternalToolsPage()
|
|||
},
|
||||
this->managedConnections_);
|
||||
}
|
||||
layout->addSpacing(16);
|
||||
|
||||
{
|
||||
auto group = layout.emplace<QGroupBox>("Custom stream player");
|
||||
|
@ -96,6 +97,7 @@ ExternalToolsPage::ExternalToolsPage()
|
|||
lineEdit->setPlaceholderText("custom-player-scheme://");
|
||||
groupLayout->addRow("Custom stream player URI Scheme:", lineEdit);
|
||||
}
|
||||
layout->addSpacing(16);
|
||||
|
||||
{
|
||||
auto group = layout.emplace<QGroupBox>("Image Uploader");
|
||||
|
|
|
@ -214,9 +214,9 @@ Split::Split(QWidget *parent)
|
|||
QMessageBox msgBox;
|
||||
msgBox.setText("Image upload");
|
||||
msgBox.setInformativeText(
|
||||
"You are uploading an image to an external server. You may "
|
||||
"not be able to remove the image from the site. Are you "
|
||||
"okay with this?");
|
||||
"You are uploading an image to a 3rd party service not in "
|
||||
"control of the chatterino team. You may not be able to "
|
||||
"remove the image from the site. Are you okay with this?");
|
||||
msgBox.addButton(QMessageBox::Cancel);
|
||||
msgBox.addButton(QMessageBox::Yes);
|
||||
msgBox.addButton("Yes, don't ask again", QMessageBox::YesRole);
|
||||
|
|
Loading…
Reference in a new issue