<!-- Version 0.8. -->
<sect1 id="version_0.8">
<title><ulink url="https://www.stoutner.com/privacy-browser-pc-0.8/">0.8</ulink> -
- 30 January 2025</title>
+ <ulink url="https://gitweb.stoutner.com/?p=PrivacyBrowserPC.git;a=commitdiff;h=13c0bfabcbdd4ff40ccd352ec4bf8818a0e7b978;ds=sidebyside">30 January 2025</ulink></title>
<itemizedlist>
<listitem><para>Fix the <ulink url="https://redmine.stoutner.com/issues/821">WebEngine reloading the current URL</ulink> when trying to load a new URL with a different user agent.
/* SPDX-License-Identifier: GPL-3.0-or-later
- * SPDX-FileCopyrightText: 2024 Soren Stoutner <soren@stoutner.com>
+ * SPDX-FileCopyrightText: 2024-2025 Soren Stoutner <soren@stoutner.com>
*
* This file is part of Privacy Browser PC <https://www.stoutner.com/privacy-browser-pc/>.
*
#include "ui_SettingsPrivacy.h"
#include "ui_SettingsSpellCheck.h"
-// Qt toolkit headers.
+// Qt framework headers.
#include <QDir>
#include <QFileDialog>
SettingsDialog::SettingsDialog(QWidget *parentWidgetPointer, KCoreConfigSkeleton *coreConfigSkeletonPointer) :
KConfigDialog(parentWidgetPointer, QLatin1String("settings"), coreConfigSkeletonPointer)
{
+ // Set the minimum size of the dialog.
+ setMinimumSize(600, 600);
+
// Instantiate the settings UI.
Ui::PrivacySettings privacySettingsUi;
Ui::GeneralSettings generalSettingsUi;