Various bugfix:

- pipette buttons are now mutually exclusive
- pipette from L curve (Lab tool) now works properly
- pipette from B curve (RGB tool) now works properly
- curve that doesn't handle the pipette mechanism hides the pipette button
- RGB components of the Tone Curves' pipette now displayed in red, green & blue
- the vertical line where the point will be inserted is displayed in grey and has a line's width of 2 pixels
This commit is contained in:
Hombre
2014-01-26 13:46:37 +01:00
parent dfdab88238
commit 2bd2f4cce2
12 changed files with 220 additions and 17 deletions

View File

@@ -200,6 +200,12 @@ void CurveEditorGroup::typeSelectionChanged (CurveEditor* ce, int n) {
void CurveEditorGroup::curveTypeToggled(CurveEditor* ce) {
bool curveRestored = false;
if (displayedCurve) {
EditDataProvider* editProvider = displayedCurve->getEditProvider();
if (editProvider && editProvider->getCurrSubscriber() == displayedCurve)
displayedCurve->switchOffEditMode();
}
// Looking for the button state
if (ce->curveType->get_active()) {
// The button is now pressed, so we have to first hide all other CurveEditor
@@ -328,7 +334,7 @@ CurveEditorSubGroup::~CurveEditorSubGroup() {
}
void CurveEditorSubGroup::updateEditButton(CurveEditor* curve, Gtk::ToggleButton *button, sigc::connection &connection) {
if (curve->getEditID() == EUID_None) {
if (!curve->getEditProvider() || curve->getEditID() == EUID_None) {
button->hide();
}
else {