Changeset 1255
- Timestamp:
- 06/09/08 12:08:43 (3 months ago)
- Files:
-
- ingen/src/libs/gui/ControlGroups.cpp (modified) (1 diff)
- ingen/src/libs/gui/ControlPanel.cpp (modified) (2 diffs)
- ingen/src/libs/gui/Port.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
ingen/src/libs/gui/ControlGroups.cpp
r1254 r1255 168 168 SliderControlGroup::set_value(const Atom& atom) 169 169 { 170 cout << "CONTROL VALUE CHANGED" << endl; 171 170 172 float val = atom.get_float(); 171 173 ingen/src/libs/gui/ControlPanel.cpp
r842 r1255 232 232 { 233 233 if (_callback_enabled) { 234 App::instance().engine()->disable_responses();235 236 /* Send the message, but set the client-side model's value to the new237 * setting right away (so the value doesn't need to be echoed back) */238 234 239 235 if (_all_voices_radio->get_active()) { … … 248 244 } 249 245 250 App::instance().engine()->set_next_response_id(rand()); // FIXME: inefficient, probably not good251 246 } 252 247 } ingen/src/libs/gui/Port.cpp
r1218 r1255 95 95 Port::value_changed(const Atom& value) 96 96 { 97 cout << "PORT VALUE CHANGED" << endl; 98 97 99 if (value.type() == Atom::FLOAT) 98 100 FlowCanvas::Port::set_control(value.get_float());
