Skip to content

Commit

Permalink
Merge pull request #3632 from LukashonakV/ISSUE#3383
Browse files Browse the repository at this point in the history
Fix: 3383. Clock. Default value for cldYearShift_ = 1900/01/01
  • Loading branch information
Alexays authored Sep 23, 2024
2 parents 21af48f + b4e97eb commit 07f75e3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/modules/clock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ waybar::modules::Clock::Clock(const std::string& id, const Json::Value& config)
m_tlpFmt_{(config_["tooltip-format"].isString()) ? config_["tooltip-format"].asString() : ""},
m_tooltip_{new Gtk::Label()},
cldInTooltip_{m_tlpFmt_.find("{" + kCldPlaceholder + "}") != std::string::npos},
cldYearShift_{January / 1 / 1900},
tzInTooltip_{m_tlpFmt_.find("{" + kTZPlaceholder + "}") != std::string::npos},
tzCurrIdx_{0},
ordInTooltip_{m_tlpFmt_.find("{" + kOrdPlaceholder + "}") != std::string::npos} {
Expand Down

0 comments on commit 07f75e3

Please sign in to comment.