From 48e57a2122cd83d9d3204c38454778f8bc0408f0 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Mon, 25 Aug 2025 18:33:25 -0400 Subject: [PATCH] autoformating --- Commons/Icons.qml | 5 ++--- Commons/Time.qml | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Commons/Icons.qml b/Commons/Icons.qml index eca5ecc..bc9a25c 100644 --- a/Commons/Icons.qml +++ b/Commons/Icons.qml @@ -33,9 +33,8 @@ Singleton { try { if (typeof DesktopEntries === 'undefined' || !DesktopEntries.byId) return iconFromName(fallback, fallback) - const entry = (DesktopEntries.heuristicLookup) ? - DesktopEntries.heuristicLookup(appId) : - DesktopEntries.byId(appId) + const entry = (DesktopEntries.heuristicLookup) ? DesktopEntries.heuristicLookup( + appId) : DesktopEntries.byId(appId) const name = entry && entry.icon ? entry.icon : "" return iconFromName(name || fallback, fallback) } catch (e) { diff --git a/Commons/Time.qml b/Commons/Time.qml index 062f5dc..fe1f3fd 100644 --- a/Commons/Time.qml +++ b/Commons/Time.qml @@ -19,7 +19,7 @@ Singleton { let day = date.getDate() let month = date.toLocaleDateString(Qt.locale(), "MMM") - return timeString + " - " + (Settings.data.location.reverseDayMonth ? `${dayName}, ${month} ${day}` : `${dayName}, ${day} ${month}`) + return timeString + " - " + (Settings.data.location.reverseDayMonth ? `${dayName}, ${month} ${day}` : `${dayName}, ${day} ${month}`) } return timeString