Skip to content

Commit

Permalink
Small changes for v2.0.0 support, also for res fix
Browse files Browse the repository at this point in the history
  • Loading branch information
croozeus committed Feb 24, 2014
1 parent 32d5064 commit 355378d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions buildmlearn-toolkit-src/FlashcardTemplate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,9 +72,9 @@ FlashcardTemplate::FlashcardTemplate(QWidget *parent) :
fcImageLabel->setFixedHeight(40);

questionLabel->setStyleSheet("font-size:24px;");
fcImageLabel->setStyleSheet("font-size:22px;");
hintLabel->setStyleSheet("font-size:22px;");
correctAnserLabel->setStyleSheet("font-size:22px;");
fcImageLabel->setStyleSheet("font-size:18px;");
hintLabel->setStyleSheet("font-size:14px;");
correctAnserLabel->setStyleSheet("font-size:18px;");

widget1_vlayout->addWidget(questionLabel);
widget1_vlayout->addWidget(questionEdit);
Expand Down Expand Up @@ -267,7 +267,7 @@ widget1_vlayout->setAlignment(Qt::AlignTop);
void FlashcardTemplate::on_chooseImageButton_clicked()
{
QString fileName = QFileDialog::getOpenFileName(this, tr("Open File"), "",
tr("Images (*.png *.jpg)"));
tr("Images (*.png)"));

fcImagePathLabel->setText(fileName);
}
Expand Down
2 changes: 1 addition & 1 deletion buildmlearn-toolkit-src/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ void MainWindow::newClicked()
void MainWindow::aboutClicked()
{

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.");
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]. ");
}

void MainWindow::helpClicked()
Expand Down

0 comments on commit 355378d

Please sign in to comment.