Keep the local timezone from being in the tooltip.
This commit is contained in:
@ -191,10 +191,13 @@ auto waybar::modules::Clock::getTZtext(sys_seconds now) -> std::string {
|
|||||||
std::stringstream os;
|
std::stringstream os;
|
||||||
bool first = true;
|
bool first = true;
|
||||||
for (size_t tz_idx{0}; tz_idx < tzList_.size(); ++tz_idx) {
|
for (size_t tz_idx{0}; tz_idx < tzList_.size(); ++tz_idx) {
|
||||||
|
// Skip local timezone (nullptr) - never show it in tooltip
|
||||||
|
if (tzList_[tz_idx] == nullptr) continue;
|
||||||
|
|
||||||
// Skip current timezone unless timezone-tooltip-format is specified
|
// Skip current timezone unless timezone-tooltip-format is specified
|
||||||
if (static_cast<int>(tz_idx) == tzCurrIdx_ && tzTooltipFormat_.empty()) continue;
|
if (static_cast<int>(tz_idx) == tzCurrIdx_ && tzTooltipFormat_.empty()) continue;
|
||||||
|
|
||||||
const auto* tz = tzList_[tz_idx] != nullptr ? tzList_[tz_idx] : local_zone();
|
const auto* tz = tzList_[tz_idx];
|
||||||
auto zt{zoned_time{tz, now}};
|
auto zt{zoned_time{tz, now}};
|
||||||
|
|
||||||
// Add newline before each entry except the first
|
// Add newline before each entry except the first
|
||||||
|
Reference in New Issue
Block a user