1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00

Less agressive tooltip

This commit is contained in:
Dubslow 2015-03-16 16:15:34 -05:00
parent b908852e3b
commit ad09980ce7
No known key found for this signature in database
GPG Key ID: 3DB8E05315C220AA
2 changed files with 14 additions and 8 deletions

View File

@ -75,6 +75,7 @@ ProfileForm::ProfileForm(QWidget *parent) :
toxId->setReadOnly(true);
toxId->setFrame(false);
toxId->setFont(Style::getFont(Style::Small));
toxId->setToolTip(bodyUI->toxId->toolTip());
QVBoxLayout *toxIdGroup = qobject_cast<QVBoxLayout*>(bodyUI->toxGroup->layout());
toxIdGroup->replaceWidget(bodyUI->toxId, toxId);
@ -268,7 +269,7 @@ void ProfileForm::onExportClicked()
{
QString current = bodyUI->profiles->currentText() + Core::TOX_EXT;
QString path = QFileDialog::getSaveFileName(0, tr("Export profile", "save dialog title"),
QDir::home().filePath(current),
QDir::home().filePath(current),
tr("Tox save file (*.tox)", "save dialog filter"));
if (!path.isEmpty())
{
@ -296,7 +297,7 @@ void ProfileForm::onDeleteClicked()
QMessageBox::warning(this, tr("Profile currently loaded","current profile deletion warning title"), tr("This profile is currently in use. Please load a different profile before deleting this one.","current profile deletion warning text"));
}
else
{
{
if (GUI::askQuestion(tr("Deletion imminent!","deletion confirmation title"),
tr("Are you sure you want to delete this profile?","deletion confirmation text")))
{

View File

@ -82,23 +82,28 @@
</item>
<item alignment="Qt::AlignTop">
<widget class="QGroupBox" name="toxGroup">
<property name="toolTip">
<string comment="Tox ID tooltip">This bunch of characters tells other Tox clients how to contact you.
Share it with your friends to communicate.</string>
</property>
<property name="title">
<string>Tox ID</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_3">
<item>
<widget class="CroppingLabel" name="toxIdLabel">
<property name="toolTip">
<string comment="Tox ID tooltip">This bunch of characters tells other Tox clients how to contact you.
Share it with your friends to communicate.</string>
</property>
<property name="text">
<string>Your Tox ID (click to copy)</string>
</property>
</widget>
</item>
<item>
<widget class="QLineEdit" name="toxId"/>
<widget class="QLineEdit" name="toxId">
<property name="toolTip">
<string comment="Tox ID tooltip">This bunch of characters tells other Tox clients how to contact you.
Share it with your friends to communicate.</string>
</property>
</widget>
</item>
<item>
<widget class="QFrame" name="verticalFrame">
@ -119,7 +124,7 @@ Share it with your friends to communicate.</string>
<item alignment="Qt::AlignTop">
<widget class="QLabel" name="label">
<property name="text">
<string>Share this code, so friends can add you</string>
<string>This QR code contains your Tox ID. You may share this with your friends as well.</string>
</property>
</widget>
</item>