449 |
449 |
450 // ============================================================================= |
450 // ============================================================================= |
451 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
451 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
452 // ============================================================================= |
452 // ============================================================================= |
453 void ForgeWindow::slot_quickColor() { |
453 void ForgeWindow::slot_quickColor() { |
454 LDOpenFile::current()->openHistory(); |
454 beginAction (null); |
455 QToolButton* button = static_cast<QToolButton*> (sender()); |
455 QToolButton* button = static_cast<QToolButton*> (sender()); |
456 LDColor* col = null; |
456 LDColor* col = null; |
457 |
457 |
458 for (quickColor entry : m_colorMeta) { |
458 for (quickColor entry : m_colorMeta) { |
459 if (entry.btn == button) { |
459 if (entry.btn == button) { |
473 |
473 |
474 obj->setColor (newColor); |
474 obj->setColor (newColor); |
475 } |
475 } |
476 |
476 |
477 fullRefresh(); |
477 fullRefresh(); |
478 LDOpenFile::current()->closeHistory(); |
478 endAction(); |
479 } |
479 } |
480 |
480 |
481 // ============================================================================= |
481 // ============================================================================= |
482 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
482 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * |
483 // ============================================================================= |
483 // ============================================================================= |