| Summary: | History sidebar is too narrow | ||
|---|---|---|---|
| Product: | [Applications] Falkon | Reporter: | Davide <baldiniebaldini> |
| Component: | general | Assignee: | David Rosca <nowrep> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | baldiniebaldini, jurajoravec, steamlie |
| Priority: | NOR | ||
| Version First Reported In: | 23.08.1 | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | https://invent.kde.org/network/falkon/-/commit/8288ce3c14dfdacc0c74d33e5face5d22fd57911 | Version Fixed/Implemented In: | 25.12.0 |
| Sentry Crash Report: | |||
| Attachments: | Default width of history sidebar | ||
Not a fix, but a workaround (works for me):
diff --git a/src/lib/sidebar/sidebar.cpp b/src/lib/sidebar/sidebar.cpp
index 0c023fe54..4f64359b2 100644
--- a/src/lib/sidebar/sidebar.cpp
+++ b/src/lib/sidebar/sidebar.cpp
@@ -63,14 +63,14 @@ void SideBar::setWidget(QWidget* widget)
void SideBar::showBookmarks()
{
- m_titleBar->setTitle(tr("Bookmarks"));
+ m_titleBar->setTitle(tr("Bookmarks "));
auto* bar = new BookmarksSidebar(m_window);
setWidget(bar);
}
void SideBar::showHistory()
{
- m_titleBar->setTitle(tr("History"));
+ m_titleBar->setTitle(tr("History "));
auto* bar = new HistorySideBar(m_window);
setWidget(bar);
}
A possibly relevant merge request was started @ https://invent.kde.org/network/falkon/-/merge_requests/155 Git commit 8288ce3c14dfdacc0c74d33e5face5d22fd57911 by Juraj Oravec. Committed on 25/10/2025 at 18:48. Pushed by jurajo into branch 'master'. Add configurable minimal width for sidebar FIXED-IN: 25.12.0 Signed-off-by: Juraj Oravec <jurajoravec@mailo.com> M +12 -0 src/lib/app/browserwindow.cpp M +2 -0 src/lib/app/browserwindow.h M +1 -0 src/lib/other/qzsettings.cpp M +2 -0 src/lib/other/qzsettings.h M +4 -0 src/lib/preferences/preferences.cpp M +23 -6 src/lib/preferences/preferences.ui https://invent.kde.org/network/falkon/-/commit/8288ce3c14dfdacc0c74d33e5face5d22fd57911 |
Created attachment 162024 [details] Default width of history sidebar SOFTWARE/OS VERSIONS Linux/Trinity Desktop Environment: Qt Version: $(dpkg -s libqt5core5a | grep Version) -> 5.15.8+dfsg-11 ADDITIONAL INFORMATION Pressing ctrl-h on the Falkon GUI opens the history sidebar, which appears too narrow as in attached screenshot. The XML file `src/lib/sidebar/historysidebar.ui`, if related to this issue, specifies a width of 150px, but on my screen it renders at about 80px.