mirror of
https://github.com/rad4day/Waybar.git
synced 2023-12-21 10:22:59 +01:00
refactor: remove useless param
This commit is contained in:
parent
7e8eee0571
commit
963d4f68e4
@ -31,7 +31,7 @@ class ALabel : public IModule {
|
||||
|
||||
virtual bool handleToggle(GdkEventButton *const &ev);
|
||||
virtual bool handleScroll(GdkEventScroll *);
|
||||
virtual std::string getState(uint8_t value, bool lesser = false, bool reverse = false);
|
||||
virtual std::string getState(uint8_t value, bool lesser = false);
|
||||
|
||||
private:
|
||||
std::vector<int> pid_;
|
||||
|
@ -129,7 +129,7 @@ std::string waybar::ALabel::getIcon(uint16_t percentage, const std::string& alt,
|
||||
return "";
|
||||
}
|
||||
|
||||
std::string waybar::ALabel::getState(uint8_t value, bool lesser, bool reverse) {
|
||||
std::string waybar::ALabel::getState(uint8_t value, bool lesser) {
|
||||
if (!config_["states"].isObject()) {
|
||||
return "";
|
||||
}
|
||||
@ -143,8 +143,8 @@ std::string waybar::ALabel::getState(uint8_t value, bool lesser, bool reverse) {
|
||||
}
|
||||
}
|
||||
// Sort states
|
||||
std::sort(states.begin(), states.end(), [&reverse](auto& a, auto& b) {
|
||||
return reverse ? a.second < b.second : a.second > b.second;
|
||||
std::sort(states.begin(), states.end(), [&lesser](auto& a, auto& b) {
|
||||
return lesser ? a.second < b.second : a.second > b.second;
|
||||
});
|
||||
std::string valid_state;
|
||||
for (auto const& state : states) {
|
||||
|
@ -130,7 +130,7 @@ auto waybar::modules::Battery::update() -> void {
|
||||
}
|
||||
std::transform(status.begin(), status.end(), status.begin(), ::tolower);
|
||||
auto format = format_;
|
||||
auto state = getState(capacity, true, true);
|
||||
auto state = getState(capacity, true);
|
||||
if (!old_status_.empty()) {
|
||||
label_.get_style_context()->remove_class(old_status_);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user