Improve the Gnome's UX

This commit is contained in:
lupoDharkael
2017-06-08 16:07:48 +02:00
parent 111c1efa5d
commit d78836fb2e
6 changed files with 38 additions and 52 deletions

View File

@@ -28,7 +28,6 @@
InfoWindow::InfoWindow(QWidget *parent) : QWidget(parent) {
setAttribute(Qt::WA_DeleteOnClose);
setFixedSize(400, 275);
setWindowFlags(Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint);
setWindowIcon(QIcon(":img/flameshot.png"));
setWindowTitle(tr("About"));
@@ -67,7 +66,7 @@ QVector<const char *> InfoWindow::description = {
void InfoWindow::initInfoTable() {
QTableWidget *table = new QTableWidget(this);
table->setWhatsThis(tr("Available shorcuts in the screen capture mode."));
table->setToolTip(tr("Available shorcuts in the screen capture mode."));
layout->addWidget(table);