From f8d89f7c14ed0be66a72ab07a1a429922795c8a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20=C3=81ngel=20San=20Mart=C3=ADn?= Date: Fri, 28 Oct 2022 22:45:06 +0200 Subject: [PATCH] Show the general tab first in the options dialog (YACReaderLibrary) --- YACReaderLibrary/options_dialog.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/YACReaderLibrary/options_dialog.cpp b/YACReaderLibrary/options_dialog.cpp index e7dd2e31..bc978eea 100644 --- a/YACReaderLibrary/options_dialog.cpp +++ b/YACReaderLibrary/options_dialog.cpp @@ -141,11 +141,11 @@ OptionsDialog::OptionsDialog(QWidget *parent) generalLayout->addWidget(apiKeyBox); generalLayout->addStretch(); + tabWidget->addTab(generalW, tr("General")); tabWidget->addTab(comicFlowW, tr("Comic Flow")); #ifndef NO_OPENGL tabWidget->addTab(gridViewW, tr("Grid view")); #endif - tabWidget->addTab(generalW, tr("General")); layout->addWidget(tabWidget); layout->addLayout(buttons);