I'm not trying to make this a p*__ing contest.
Actually, my list of 3 items might be helpful, in the sense that, once you know it, one can then decide to move on and choose to use other tools, so one does not have to waste their time trying to split logs with a handle-less axe.

"clarjon1" said:
"idk, but, it looks like "non-garbage Open-Source" went extinct 19 years ago per your stated metric...."

BINGO! That's what I'm saying. Well, not exactly 19 years ago, but more like 13.

Look, as I said previously, I use Linux as a tool in my daily activity.
That means, whatever software that is, it SHOULD be EFFICIENT.
And if it's not, I'm not going to lie to myself that it is.

And about Xdialog, I managed to bring it forward all the way to Debian Bookworm by adding some shared libraries to the .deb file, but I think eventually I'm going to just friggin write myself from scratch a replacement that does the same thing and uses Qt instead of GTK. I just need to get to the point where I gather a critical mass of fury...

It seems to me that KDE, since it concocted this "Plasma" BS, (what the mama is that supposed to mean anyway? Is it coming from the Sun or something?) went on the trajectory to a "non-functional Porsche on a pedestal for viewing" instead of the trajectory to a "sharp efficient sword for using".

It may be useful as a wallpaper in a ballroom if you use just the logo from it, but if you need a light and efficient tool, you will have to look somewhere else.

Or, if not, get to work and patch the hell out of it.

So, if anyone wants something helpful, here's what I did:

- Ditch the "latest and greatest". NEWER=CRAPPIER in 99% of cases (whether hardware - like the juicy Intel ME backdoor - or software)

- Go back to Debian Buster/Bullseye and konqueror_21.04.0-1 , dolphin_20.12.1-2, kwin_5.20.5-1 .

- Get the Debian source package for kwin_5.20.5-1, patch using the attached "kwin_plastik_border_snap.patch" and rebuild. Then open /usr/share/kwin/decorations/kwin4_decoration_qml_plastik/contents/ui/main.qml and for "case DecorationOptions.BorderNone" set "borders.setBorders(4);" so you can have a sane, non-cretinous 4-pixel visible border. Then use LXDE with KWin as window manager with the Plastik window decoration.


- Get the Debian source package for konqueror_21.04.0-1, patch using the attached

"konqueror_status_bar.patch" to eliminate the stupid white-yellowish strip covering the status bar messages when multiple tabs exist.


- Get the Debian source package for dolphin_20.12.1-2, patch using the attached "dolphin_filesize_in_bytes+iso_long_date.patch" and "dolphin_single-click_enforced.patch". This will show file sizes in bytes (instead of the idiotic "kikimimibibigigififi" BS) in Konqueror (and Dolphin, but I don't use it) and date-time stamps in standard 24h ISO long format "YYYY-MM-DD hh:mm:ss". Also it will launch items in the file view with a single click instead of the default and stupidly non-changeable double-click (also in both Konqueror and Dolphin).


So here, if my previous message "didn't help", this one definitely should.




On 12/01/2025 09:13 PM, Richard Troy wrote:
I was about to reply to Cristian, "Three words: That Didn't Help."

But now it's five:

Neither of you are helping!

Let's NOT fall into a pissing contest, please! "You lose audience."

Accurate? That's opinion. But neither viewpoint is fair, of course.

FWIW, when it comes to people, I try hard to not judge anyone by their 
worst moment. When it comes to software it's a simpler time-spent vs 
utility metric.

Richard

--
Richard Troy, Chief Scientist
Science Tools Corporation
510-717-6942
[email protected], http://ScienceTools.com/

I pledge allegiance to We, The People, to mutual peace and harmony, and
to the natural Earth and biosphere upon which We, The People, depend.

Description: <short summary of the patch>
 TODO: Put a short summary on the line above and replace this paragraph
 with a longer explanation of this change. Complete the meta-information
 with other relevant fields (see below for details). To make it easier, the
 information below has been extracted from the changelog. Adjust it or drop
 it.
 .
 kwin (4:5.20.5-1) unstable; urgency=medium
 .
   * New upstream release (5.20.5).
Author: Norbert Preining <[email protected]>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2025-12-02

--- kwin-5.20.5.orig/placement.cpp
+++ kwin-5.20.5/placement.cpp
@@ -93,7 +93,7 @@ void Placement::place(AbstractClient *c,
     else
         placeSmart(c, area, nextPlacement);
 
-    if (options->borderSnapZone()) {
+/*  if (options->borderSnapZone()) {
         // snap to titlebar / snap to window borders on inner screen edges
         const QRect geo(c->frameGeometry());
         QPoint corner = geo.topLeft();
@@ -118,7 +118,7 @@ void Placement::place(AbstractClient *c,
             }
         }
         c->move(corner);
-    }
+    } */
 }
 
 /**
@@ -474,7 +474,12 @@ void Placement::placeZeroCornered(Abstra
     Q_ASSERT(area.isValid());
 
     // get the maximum allowed windows space and desk's origin
-    c->move(area.topLeft());
+// =============================== PATCH ==============================
+//  c->move(area.topLeft());
+    const QRect maxRect = area;
+    // place the window
+    c->move(QPoint(maxRect.left(), maxRect.top()));
+// =============================== PATCH ==============================
 }
 
 void Placement::placeUtility(AbstractClient *c, const QRect &area, Policy /*next*/)
@@ -855,14 +860,16 @@ int Workspace::packPositionLeft(const Ab
         newX = clientArea(MaximizeArea,
                           QPoint(client->frameGeometry().left() - 1, client->frameGeometry().center().y()), client->desktop()).left();
     }
-    if (client->titlebarPosition() != AbstractClient::PositionLeft) {
+// =========================== PATCHED ==============================
+/*  if (client->titlebarPosition() != AbstractClient::PositionLeft) {
         const int right = newX - client->frameMargins().left();
         QRect frameGeometry = client->frameGeometry();
         frameGeometry.moveRight(right);
         if (screens()->intersecting(frameGeometry) < 2) {
             newX = right;
         }
-    }
+    } */
+// =========================== PATCHED ==============================
     if (oldX <= newX) {
         return oldX;
     }
@@ -888,14 +895,16 @@ int Workspace::packPositionRight(const A
         newX = clientArea(MaximizeArea,
                           QPoint(client->frameGeometry().right() + 1, client->frameGeometry().center().y()), client->desktop()).right();
     }
-    if (client->titlebarPosition() != AbstractClient::PositionRight) {
+// =========================== PATCHED ==============================
+/*  if (client->titlebarPosition() != AbstractClient::PositionRight) {
         const int right = newX + client->frameMargins().right();
         QRect frameGeometry = client->frameGeometry();
         frameGeometry.moveRight(right);
         if (screens()->intersecting(frameGeometry) < 2) {
             newX = right;
         }
-    }
+    } */
+// =========================== PATCHED ==============================
     if (oldX >= newX) {
         return oldX;
     }
@@ -921,14 +930,16 @@ int Workspace::packPositionUp(const Abst
         newY = clientArea(MaximizeArea,
                           QPoint(client->frameGeometry().center().x(), client->frameGeometry().top() - 1), client->desktop()).top();
     }
-    if (client->titlebarPosition() != AbstractClient::PositionTop) {
+// =========================== PATCHED ==============================
+/*  if (client->titlebarPosition() != AbstractClient::PositionTop) {
         const int top = newY - client->frameMargins().top();
         QRect frameGeometry = client->frameGeometry();
         frameGeometry.moveTop(top);
         if (screens()->intersecting(frameGeometry) < 2) {
             newY = top;
         }
-    }
+    } */
+// =========================== PATCHED ==============================
     if (oldY <= newY) {
         return oldY;
     }
@@ -954,14 +965,16 @@ int Workspace::packPositionDown(const Ab
         newY = clientArea(MaximizeArea,
                           QPoint(client->frameGeometry().center().x(), client->frameGeometry().bottom() + 1), client->desktop()).bottom();
     }
-    if (client->titlebarPosition() != AbstractClient::PositionBottom) {
+// =========================== PATCHED ==============================
+/*  if (client->titlebarPosition() != AbstractClient::PositionBottom) {
         const int bottom = newY + client->frameMargins().bottom();
         QRect frameGeometry = client->frameGeometry();
         frameGeometry.moveBottom(bottom);
         if (screens()->intersecting(frameGeometry) < 2) {
             newY = bottom;
         }
-    }
+    } */
+// =========================== PATCHED ==============================
     if (oldY >= newY) {
         return oldY;
     }
--- kwin-5.20.5.orig/workspace.cpp
+++ kwin-5.20.5/workspace.cpp
@@ -2344,7 +2344,8 @@ int Workspace::oldDisplayHeight() const
  */
 QPoint Workspace::adjustClientPosition(AbstractClient* c, QPoint pos, bool unrestricted, double snapAdjust)
 {
-    QSize borderSnapZone(options->borderSnapZone(), options->borderSnapZone());
+// ================================== PATCHED =================================
+/*  QSize borderSnapZone(options->borderSnapZone(), options->borderSnapZone());
     QRect maxRect;
     int guideMaximized = MaximizeRestore;
     if (c->maximizeMode() != MaximizeRestore) {
@@ -2361,11 +2362,16 @@ QPoint Workspace::adjustClientPosition(A
     }
 
     if (options->windowSnapZone() || !borderSnapZone.isNull() || options->centerSnapZone()) {
-
+*/
+    if (options->windowSnapZone() || options->borderSnapZone() || options->centerSnapZone()) {
+// ============================================================================
         const bool sOWO = options->isSnapOnlyWhenOverlapping();
-        const int screen = screens()->number(pos + c->rect().center());
+// ================================== PATCHED =================================
+/*      const int screen = screens()->number(pos + c->rect().center());
         if (maxRect.isNull())
-            maxRect = clientArea(MovementArea, screen, c->desktop());
+            maxRect = clientArea(MovementArea, screen, c->desktop()); */
+        const QRect maxRect = clientArea(MovementArea, pos + c->rect().center(), c->desktop());
+// ============================================================================
         const int xmin = maxRect.left();
         const int xmax = maxRect.right() + 1;             //desk size
         const int ymin = maxRect.top();
@@ -2385,9 +2391,11 @@ QPoint Workspace::adjustClientPosition(A
         int lx, ly, lrx, lry; //coords and size for the comparison client, l
 
         // border snap
-        const int snapX = borderSnapZone.width() * snapAdjust; //snap trigger
-        const int snapY = borderSnapZone.height() * snapAdjust;
-        if (snapX || snapY) {
+// ================================== PATCHED =================================
+/*      const int snapX = borderSnapZone.width() * snapAdjust; //snap trigger
+        const int snapY = borderSnapZone.height() * snapAdjust; */
+        int snap = options->borderSnapZone() * snapAdjust; //snap trigger
+/*      if (snapX || snapY) {
             QRect geo = c->frameGeometry();
             QMargins frameMargins = c->frameMargins();
 
@@ -2426,10 +2434,34 @@ QPoint Workspace::adjustClientPosition(A
                 deltaY = ry - ymax;
                 ny = ymax - ch + frameMargins.bottom();
             }
+        } */
+
+        if (snap) {
+            if ((sOWO ? (cx < xmin) : true) && (qAbs(xmin - cx) < snap)) {
+                deltaX = xmin - cx;
+                nx = xmin;
+            }
+            if ((sOWO ? (rx > xmax) : true) && (qAbs(rx - xmax) < snap) && (qAbs(xmax - rx) < deltaX)) {
+                deltaX = rx - xmax;
+                nx = xmax - cw;
+            }
+
+            if ((sOWO ? (cy < ymin) : true) && (qAbs(ymin - cy) < snap)) {
+                deltaY = ymin - cy;
+                ny = ymin;
+            }
+            if ((sOWO ? (ry > ymax) : true) && (qAbs(ry - ymax) < snap) && (qAbs(ymax - ry) < deltaY)) {
+                deltaY = ry - ymax;
+                ny = ymax - ch;
+            }
         }
+// ============================================================================
 
         // windows snap
-        int snap = options->windowSnapZone() * snapAdjust;
+// ================================== PATCHED =================================
+//      int snap = options->windowSnapZone() * snapAdjust;
+        snap = options->windowSnapZone() * snapAdjust;
+// ============================================================================
         if (snap) {
             for (auto l = m_allClients.constBegin(); l != m_allClients.constEnd(); ++l) {
                 if ((*l) == c)
@@ -2450,8 +2482,11 @@ QPoint Workspace::adjustClientPosition(A
                 lrx = lx + (*l)->width();
                 lry = ly + (*l)->height();
 
-                if (!(guideMaximized & MaximizeHorizontal) &&
-                    (((cy <= lry) && (cy  >= ly)) || ((ry >= ly) && (ry  <= lry)) || ((cy <= ly) && (ry >= lry)))) {
+// ================================== PATCHED =================================
+/*              if (!(guideMaximized & MaximizeHorizontal) &&
+                    (((cy <= lry) && (cy  >= ly)) || ((ry >= ly) && (ry  <= lry)) || ((cy <= ly) && (ry >= lry)))) { */
+                if (((cy <= lry) && (cy >= ly)) || ((ry >= ly) && (ry <= lry)) || ((cy <= ly) && (ry >= lry))) {
+// ============================================================================
                     if ((sOWO ? (cx < lrx) : true) && (qAbs(lrx - cx) < snap) && (qAbs(lrx - cx) < deltaX)) {
                         deltaX = qAbs(lrx - cx);
                         nx = lrx;
@@ -2462,8 +2497,11 @@ QPoint Workspace::adjustClientPosition(A
                     }
                 }
 
-                if (!(guideMaximized & MaximizeVertical) &&
-                    (((cx <= lrx) && (cx  >= lx)) || ((rx >= lx) && (rx  <= lrx)) || ((cx <= lx) && (rx >= lrx)))) {
+// ================================== PATCHED =================================
+/*              if (!(guideMaximized & MaximizeVertical) &&
+                    (((cx <= lrx) && (cx  >= lx)) || ((rx >= lx) && (rx  <= lrx)) || ((cx <= lx) && (rx >= lrx)))) { */
+                if (((cx <= lrx) && (cx  >= lx)) || ((rx >= lx) && (rx  <= lrx)) || ((cx <= lx) && (rx >= lrx))) {
+// ============================================================================
                     if ((sOWO ? (cy < lry) : true) && (qAbs(lry - cy) < snap) && (qAbs(lry - cy) < deltaY)) {
                         deltaY = qAbs(lry - cy);
                         ny = lry;
@@ -2476,7 +2514,10 @@ QPoint Workspace::adjustClientPosition(A
                 }
 
                 // Corner snapping
-                if (!(guideMaximized & MaximizeVertical) && (nx == lrx || nx + cw == lx)) {
+// ================================== PATCHED =================================
+//              if (!(guideMaximized & MaximizeVertical) && (nx == lrx || nx + cw == lx)) {
+                if (nx == lrx || nx + cw == lx) {
+// ============================================================================
                     if ((sOWO ? (ry > lry) : true) && (qAbs(lry - ry) < snap) && (qAbs(lry - ry) < deltaY)) {
                         deltaY = qAbs(lry - ry);
                         ny = lry - ch;
@@ -2486,7 +2527,10 @@ QPoint Workspace::adjustClientPosition(A
                         ny = ly;
                     }
                 }
-                if (!(guideMaximized & MaximizeHorizontal) && (ny == lry || ny + ch == ly)) {
+// ================================== PATCHED =================================
+//              if (!(guideMaximized & MaximizeHorizontal) && (ny == lry || ny + ch == ly)) {
+                if (ny == lry || ny + ch == ly) {
+// ============================================================================
                     if ((sOWO ? (rx > lrx) : true) && (qAbs(lrx - rx) < snap) && (qAbs(lrx - rx) < deltaX)) {
                         deltaX = qAbs(lrx - rx);
                         nx = lrx - cw;
--- kwin-5.20.5.orig/x11client.cpp
+++ kwin-5.20.5/x11client.cpp
@@ -626,7 +626,9 @@ bool X11Client::manage(xcb_window_t w, b
         Placement::self()->place(this, area);
         // The client may have been moved to another screen, update placement area.
         area = workspace()->clientArea(PlacementArea, this);
-        dontKeepInArea = true;
+// =============================== PATCHED ===============================
+//      dontKeepInArea = true;
+// =============================== PATCHED ===============================
         placementDone = true;
     }
 
@@ -675,7 +677,10 @@ bool X11Client::manage(xcb_window_t w, b
             if (pseudo_max != MaximizeRestore) {
                 maximize((MaximizeMode)pseudo_max);
                 // from now on, care about maxmode, since the maximization call will override mode for fix aspects
-                dontKeepInArea |= (max_mode == MaximizeFull);
+// ========================================== PATCHED ==========================================
+//              dontKeepInArea |= (max_mode == MaximizeFull);
+                dontKeepInArea = (max_mode == MaximizeFull);
+// ========================================== PATCHED ==========================================
                 QRect savedGeometry; // Use placement when unmaximizing ...
                 if (!(max_mode & MaximizeVertical)) {
                     savedGeometry.setY(y());   // ...but only for horizontal direction
Description: Disable the stupid retarded white strip covering the status bar.
 At Konqueror startup the status bar is just fine. But as soon as a new tab is
 open, the status bar is filled with a stupid white-yellow color making the
 status bar messages unreadable not to mention looking crappy stupid.
 This patch disables this crap by commenting out calls to statusbar()->updateActiveStatus()
 in 3 different source files.
 .
 konqueror (4:21.04.0-1) experimental; urgency=medium
 .
   [ Norbert Preining ]
   * New upstream release (21.04.0).
   * Borrow minimal upstream signing key from k3b.
   * Drop Kubuntu from maintainer name.
   * Added myself to the uploaders.
   * Update list of installed files.
Author: Norbert Preining <[email protected]>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2025-08-30

--- konqueror-21.04.0-old/src/konqframestatusbar.cpp
+++ konqueror-21.04.0-new/src/konqframestatusbar.cpp
@@ -195,7 +195,7 @@ bool KonqFrameStatusBar::eventFilter(QOb
     } else if (o == this && e->type() == QEvent::ApplicationPaletteChange) {
         //unsetPalette();
         setPalette(QPalette());
-        updateActiveStatus();
+//      updateActiveStatus();		============= CRAPFIX =============
         return true;
     }
 
@@ -260,7 +260,7 @@ void KonqFrameStatusBar::slotConnectToNe
 void KonqFrameStatusBar::showActiveViewIndicator(bool b)
 {
     m_led->setVisible(b);
-    updateActiveStatus();
+//  updateActiveStatus();		============== CRAPFIX =============
 }
 
 void KonqFrameStatusBar::showLinkedViewIndicator(bool b)
--- konqueror-21.04.0-old/src/konqmainwindow.cpp
+++ konqueror-21.04.0-new/src/konqmainwindow.cpp
@@ -2117,11 +2117,11 @@ void KonqMainWindow::slotPartActivated(K
         }
     }
 
-    m_currentView->frame()->statusbar()->updateActiveStatus();
+/*  m_currentView->frame()->statusbar()->updateActiveStatus();		============ CRAPFIX ============
 
     if (oldView && oldView->frame()) {
         oldView->frame()->statusbar()->updateActiveStatus();
-    }
+    } */
 
     //qCDebug(KONQUEROR_LOG) << "setting location bar url to"
     //         << m_currentView->locationBarURL() << "m_currentView=" << m_currentView;
--- konqueror-21.04.0-old/src/konqviewmanager.cpp
+++ konqueror-21.04.0-new/src/konqviewmanager.cpp
@@ -1024,7 +1024,7 @@ void KonqViewManager::slotActivePartChan
         return;
     }
     if (!m_bLoadingProfile)  {
-        view->frame()->statusbar()->updateActiveStatus();
+//      view->frame()->statusbar()->updateActiveStatus();		============== CRAPFIX ==============
         view->frame()->parentContainer()->setActiveChild(view->frame());
     }
     //qCDebug(KONQUEROR_LOG) << "done";
Description: File sizes displayed in bytes and date-times in ISO long format
 For the detailed file listing format, file sizes are always displayed in bytes,
 with three-digit groups separated by spaces. Also access, modification and
 creation times are displayed as long ISO date-times (yyyy-MM-dd hh:mm:ss).
 This patch affects both Dolphin and Konqueror file managers.
 .
 dolphin (4:20.12.1-2) unstable; urgency=medium
 .
   [ Norbert Preining ]
   * Add myself to uploaders.
   * Use Debian Qt/KDE Maintainers as maintainer
   * Backport of upstream compatibility fix for frameworks 5.78.
Author: Norbert Preining <[email protected]>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2025-08-28

--- dolphin-20.12.1-old/src/kitemviews/kfileitemlistwidget.cpp
+++ dolphin-20.12.1-new/src/kitemviews/kfileitemlistwidget.cpp
@@ -42,6 +42,13 @@ bool KFileItemListWidgetInformant::itemI
     return item.isLink();
 }
 
+QString digsep (QString x) {
+    int ix = x.length()-3;
+    while (ix>0) {x.insert(ix,' '); ix-=3;}
+    return x;
+}
+
+
 QString KFileItemListWidgetInformant::roleText(const QByteArray& role,
                                                const QHash<QByteArray, QVariant>& values) const
 {
@@ -64,20 +71,23 @@ QString KFileItemListWidgetInformant::ro
                         // if we have directory size available
                         if (roleValue != -1) {
                             const KIO::filesize_t size = roleValue.value<KIO::filesize_t>();
-                            text = KFormat().formatByteSize(size);
+//                          text = KFormat().formatByteSize(size);
+                            text = i18n("%1 Bytes", digsep(QString::number(size)));	//=============== FILE SIZE IN BYTES ================//
                         }
                     }
                 }
             }
         } else {
             const KIO::filesize_t size = roleValue.value<KIO::filesize_t>();
-            text = KFormat().formatByteSize(size);
+//          text = KFormat().formatByteSize(size);
+            text = i18n("%1 Bytes", digsep(QString::number(size)));			//=============== FILE SIZE IN BYTES ================//
         }
     } else if (role == "modificationtime" || role == "creationtime" || role == "accesstime") {
             bool ok;
             const long long time = roleValue.toLongLong(&ok);
             if (ok && time != -1) {
-                return QLocale().toString(QDateTime::fromSecsSinceEpoch(time), QLocale::ShortFormat);
+//              return QLocale().toString(QDateTime::fromSecsSinceEpoch(time), QLocale::ShortFormat);
+                return QDateTime(QDateTime::fromSecsSinceEpoch(time)).toString("yyyy-MM-dd hh:mm:ss");	//========= ISO LONG DATE ==========//
             }
     } else if (role == "deletiontime" || role == "imageDateTime") {
         const QDateTime dateTime = roleValue.toDateTime();
Description: Single-click to open files and directories
 This patch enforces opening files and directories by a single-click of
 the left mouse button. It affects both Dolphin and Konqueror file managers.
 .
 dolphin (4:20.12.1-2) unstable; urgency=medium
 .
   [ Norbert Preining ]
   * Add myself to uploaders.
   * Use Debian Qt/KDE Maintainers as maintainer
   * Backport of upstream compatibility fix for frameworks 5.78.
Author: Norbert Preining <[email protected]>

---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:

Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: https://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: 2025-08-28

--- dolphin-20.12.1-old/src/kitemviews/kitemlistcontroller.cpp	2021-01-02 08:42:54.000000000 -0500
+++ dolphin-20.12.1-new/src/kitemviews/kitemlistcontroller.cpp	2025-08-31 20:10:55.000000000 -0400
@@ -30,7 +30,7 @@
 
 KItemListController::KItemListController(KItemModelBase* model, KItemListView* view, QObject* parent) :
     QObject(parent),
-    m_singleClickActivationEnforced(false),
+    m_singleClickActivationEnforced(true),	//============== SINGLE-CLICK TO OPEN FILES/DIRS ==============//
     m_selectionTogglePressed(false),
     m_clearSelectionIfItemsAreNotDragged(false),
     m_isSwipeGesture(false),

Reply via email to