Skip to content

Commit 355378d

Browse files
committed
Small changes for v2.0.0 support, also for res fix
1 parent 32d5064 commit 355378d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

buildmlearn-toolkit-src/FlashcardTemplate.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ FlashcardTemplate::FlashcardTemplate(QWidget *parent) :
7272
fcImageLabel->setFixedHeight(40);
7373

7474
questionLabel->setStyleSheet("font-size:24px;");
75-
fcImageLabel->setStyleSheet("font-size:22px;");
76-
hintLabel->setStyleSheet("font-size:22px;");
77-
correctAnserLabel->setStyleSheet("font-size:22px;");
75+
fcImageLabel->setStyleSheet("font-size:18px;");
76+
hintLabel->setStyleSheet("font-size:14px;");
77+
correctAnserLabel->setStyleSheet("font-size:18px;");
7878

7979
widget1_vlayout->addWidget(questionLabel);
8080
widget1_vlayout->addWidget(questionEdit);
@@ -267,7 +267,7 @@ widget1_vlayout->setAlignment(Qt::AlignTop);
267267
void FlashcardTemplate::on_chooseImageButton_clicked()
268268
{
269269
QString fileName = QFileDialog::getOpenFileName(this, tr("Open File"), "",
270-
tr("Images (*.png *.jpg)"));
270+
tr("Images (*.png)"));
271271

272272
fcImagePathLabel->setText(fileName);
273273
}

buildmlearn-toolkit-src/mainwindow.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ void MainWindow::newClicked()
207207
void MainWindow::aboutClicked()
208208
{
209209

210-
QMessageBox::information(this,"About" , "BuildmLearn Toolkit\nVersion 1.0.0\n\nBuildmLearn Toolkit is an easy-to-use program that helps the users make mobile apps without any knowledge of application development. The toolkit helps creating mobile application with various functionality and allows teachers to input their custom content. Targeted at teachers, this toolkit helps them make learning fun and engaging through mobile apps.\n\nFor more information visit: http://buildmlearn.wordpress.com \n\nContact the developer at croozeus@gmail.com for any other information or suggestions.");
210+
QMessageBox::information(this,"About" , "BuildmLearn Toolkit\nVersion 2.0.0\n\nBuildmLearn Toolkit is an easy-to-use program that helps the users make mobile apps without any knowledge of application development. The toolkit helps creating mobile application with various functionality and allows teachers to input their custom content. Targeted at teachers, this toolkit helps them make learning fun and engaging through mobile apps.\n\nFor more information visit: http://buildmlearn.org \n\nContact the developers at BuildmLearn Google Group (https://groups.google.com/forum/#!forum/buildmlearn) for any other information or suggestions. Alternatively, you can email the core developers at [email protected]. ");
211211
}
212212

213213
void MainWindow::helpClicked()

0 commit comments

Comments
 (0)