Masterwork From Distant Lands
ActivePublic

Authored by dkazakov on Jul 9 2017, 8:13 AM.
diff --git a/libs/ui/tool/KisStabilizerDelayedPaintHelper.cpp b/libs/ui/tool/KisStabilizerDelayedPaintHelper.cpp
index f2c6d07..d5e639b 100644
--- a/libs/ui/tool/KisStabilizerDelayedPaintHelper.cpp
+++ b/libs/ui/tool/KisStabilizerDelayedPaintHelper.cpp
@@ -58,7 +58,7 @@ void KisStabilizerDelayedPaintHelper::paintSome() {
// [Re]start timer.
// No need to use Qt::PreciseTimer. This function is also called
// from KisToolFreehandHelper::paint
- m_paintTimer.start(fixedPaintTimerInterval, Qt::CoarseTimer, this);
+ m_paintTimer.start(/*fixedPaintTimerInterval*/ 1, Qt::CoarseTimer, this);
if (m_paintQueue.isEmpty()) {
return;
}
diff --git a/libs/ui/tool/kis_tool_freehand_helper.cpp b/libs/ui/tool/kis_tool_freehand_helper.cpp
index 876e0a0..9153656 100644
--- a/libs/ui/tool/kis_tool_freehand_helper.cpp
+++ b/libs/ui/tool/kis_tool_freehand_helper.cpp
@@ -588,7 +588,7 @@ void KisToolFreehandHelper::paint(KisPaintInformation &info)
m_d->stabilizedSampler.addEvent(info);
if (m_d->stabilizerDelayedPaintHelper.running()) {
// Paint here so we don't have to rely on the timer
- m_d->stabilizerDelayedPaintHelper.paintSome();
+ //m_d->stabilizerDelayedPaintHelper.paintSome();
}
} else {
m_d->previousPaintInformation = info;
dkazakov edited the content of this paste. (Show Details)Jul 9 2017, 8:13 AM
dkazakov changed the title of this paste from untitled to Masterwork From Distant Lands.
dkazakov updated the paste's language from autodetect to autodetect.