From edfbb692e9d19f7dbac6c5d59c6c483abaa9bf56 Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Fri, 9 Aug 2019 23:14:32 -0700 Subject: [PATCH] Tweak format of date bar on Daily page slightly. --- oscar/Graphs/gGraphView.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/oscar/Graphs/gGraphView.cpp b/oscar/Graphs/gGraphView.cpp index 846d251a..68f06828 100644 --- a/oscar/Graphs/gGraphView.cpp +++ b/oscar/Graphs/gGraphView.cpp @@ -1559,12 +1559,14 @@ QString gGraphView::getRangeString() QDate std = st.date(); QDate etd = et.date(); + // Format if Begin and End are on different days if (std != etd) { QString txt = st.toString(" d MMM [ HH:mm:ss") + " - " + et.toString("HH:mm:ss ] d MMM yyyy"); return txt; } + // Range is within one (local) day qint64 diff = m_maxx - m_minx; QString fmt;