Skip to content

Commit b72a672

Browse files
authored
Enable antialiasing option for move tool (#1905)
1 parent 2789e8d commit b72a672

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed

core_lib/src/interface/scribblearea.cpp

+4-1
Original file line numberDiff line numberDiff line change
@@ -1346,6 +1346,9 @@ void ScribbleArea::applyTransformedSelection()
13461346
mCanvasPainter.ignoreTransformedSelection();
13471347

13481348
Layer* layer = mEditor->layers()->currentLayer();
1349+
1350+
bool useAA = mEditor->tools()->currentTool()->properties.useAA;
1351+
13491352
if (layer == nullptr) { return; }
13501353

13511354
auto selectMan = mEditor->select();
@@ -1358,7 +1361,7 @@ void ScribbleArea::applyTransformedSelection()
13581361
handleDrawingOnEmptyFrame();
13591362
BitmapImage* bitmapImage = currentBitmapImage(layer);
13601363
if (bitmapImage == nullptr) { return; }
1361-
BitmapImage transformedImage = bitmapImage->transformed(selectMan->mySelectionRect().toRect(), selectMan->selectionTransform(), true);
1364+
BitmapImage transformedImage = bitmapImage->transformed(selectMan->mySelectionRect().toRect(), selectMan->selectionTransform(), useAA);
13621365

13631366

13641367
bitmapImage->clear(selectMan->mySelectionRect());

core_lib/src/tool/movetool.cpp

+9-2
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,17 @@ ToolType MoveTool::type()
4646

4747
void MoveTool::loadSettings()
4848
{
49+
QSettings settings(PENCIL2D, PENCIL2D);
50+
4951
properties.width = -1;
5052
properties.feather = -1;
5153
properties.useFeather = false;
5254
properties.stabilizerLevel = -1;
53-
properties.useAA = -1;
55+
properties.useAA = settings.value("moveAA").toBool();
5456
mRotationIncrement = mEditor->preference()->getInt(SETTING::ROTATION_INCREMENT);
55-
QSettings settings(PENCIL2D, PENCIL2D);
5657
properties.showSelectionInfo = settings.value("ShowSelectionInfo").toBool();
5758
mPropertyEnabled[SHOWSELECTIONINFO] = true;
59+
mPropertyEnabled[ANTI_ALIASING] = true;
5860

5961
connect(mEditor->preference(), &PreferenceManager::optionChanged, this, &MoveTool::updateSettings);
6062
}
@@ -64,6 +66,7 @@ void MoveTool::saveSettings()
6466
QSettings settings(PENCIL2D, PENCIL2D);
6567

6668
settings.setValue("ShowSelectionInfo", properties.showSelectionInfo);
69+
settings.setValue("moveAA", properties.useAA);
6770

6871
settings.sync();
6972
}
@@ -338,6 +341,9 @@ bool MoveTool::leavingThisTool()
338341
{
339342
applyTransformation();
340343
}
344+
345+
saveSettings();
346+
341347
return true;
342348
}
343349

@@ -349,6 +355,7 @@ bool MoveTool::isActive() const {
349355
void MoveTool::resetToDefault()
350356
{
351357
setShowSelectionInfo(false);
358+
setAA(true);
352359
}
353360

354361
void MoveTool::setShowSelectionInfo(const bool b)

0 commit comments

Comments
 (0)