]> git.sesse.net Git - kdenlive/commitdiff
smaller combobox to not fill the widget up
authorMarco Gittler <marco@gitma.de>
Tue, 23 Feb 2010 12:48:14 +0000 (12:48 +0000)
committerMarco Gittler <marco@gitma.de>
Tue, 23 Feb 2010 12:48:14 +0000 (12:48 +0000)
svn path=/trunk/kdenlive/; revision=4337

src/titlewidget.cpp

index e0e2de949f3c2b63cb2642a6c92e8cfbd0bcbba8..7872fff89b6ccb156afb3a2209df494b85b8b9ae 100644 (file)
@@ -432,7 +432,7 @@ TitleWidget::TitleWidget(KUrl url, Timecode tc, QString projectTitlePath, Render
 
     buttonBox->button(QDialogButtonBox::Ok)->setEnabled(KdenliveSettings::hastitleproducer());
        refreshTitleTemplates();
-       templateBox->setIconSize(QSize(60,60));
+       //templateBox->setIconSize(QSize(60,60));
        templateBox->clear();
        templateBox->addItem("");
        foreach (TitleTemplate t, titletemplates)
@@ -551,7 +551,7 @@ void TitleWidget::templateIndexChanged(int index )
        {
                if (lastDocumentHash!=QCryptographicHash::hash(xml().toString().toAscii(), QCryptographicHash::Md5).toHex())
                {
-                        if (KMessageBox::questionYesNo(this, i18n("Title was changed !\nDo you realy want to load a new Template?\nAll changes in this Document are lost !!")) == KMessageBox::No) return;
+                        if (KMessageBox::questionYesNo(this, i18n("Title was changed !\nDo you really want to load a new template?\nAll changes in this document are lost !!")) == KMessageBox::No) return;
                }
                loadTitle(item);
                lastDocumentHash=QCryptographicHash::hash(xml().toString().toAscii(), QCryptographicHash::Md5).toHex();