@@ -136,14 +136,18 @@ Tags::Tags(const std::string &id, const waybar::Bar &bar, const Json::Value &con
136
136
AModule::bindEvents (button);
137
137
138
138
if (set_tags.isArray () && !set_tags.empty ())
139
- controllClick_->signal_released ().connect (sigc::bind (sigc::mem_fun (*this , &Tags::handleRlse), set_tags[tag].asUInt ()), true );
139
+ controllClick_->signal_released ().connect (
140
+ sigc::bind (sigc::mem_fun (*this , &Tags::handleRlse), set_tags[tag].asUInt ()), true );
140
141
else
141
- controllClick_->signal_released ().connect (sigc::bind (sigc::mem_fun (*this , &Tags::handleRlse), (1 << tag)), true );
142
+ controllClick_->signal_released ().connect (
143
+ sigc::bind (sigc::mem_fun (*this , &Tags::handleRlse), (1 << tag)), true );
142
144
143
145
if (toggle_tags.isArray () && !toggle_tags.empty ())
144
- controllClick_->signal_pressed ().connect (sigc::bind (sigc::mem_fun (*this , &Tags::handlePress), toggle_tags[tag].asUInt ()), true );
146
+ controllClick_->signal_pressed ().connect (
147
+ sigc::bind (sigc::mem_fun (*this , &Tags::handlePress), toggle_tags[tag].asUInt ()), true );
145
148
else
146
- controllClick_->signal_pressed ().connect (sigc::bind (sigc::mem_fun (*this , &Tags::handlePress), (1 << tag)), true );
149
+ controllClick_->signal_pressed ().connect (
150
+ sigc::bind (sigc::mem_fun (*this , &Tags::handlePress), (1 << tag)), true );
147
151
}
148
152
button.show ();
149
153
}
@@ -168,7 +172,7 @@ Tags::~Tags() {
168
172
Tags::operator Gtk::Widget &() { return box_; };
169
173
170
174
void Tags::handleRlse (int n_press, double dx, double dy, uint32_t tag) {
171
- // Send river command to select tag on left mouse click
175
+ // Send river command to select tag on left mouse click
172
176
zriver_command_callback_v1 *callback;
173
177
zriver_control_v1_add_argument (control_, " set-focused-tags" );
174
178
zriver_control_v1_add_argument (control_, std::to_string (tag).c_str ());
0 commit comments