@@ -46,15 +46,17 @@ ToolType MoveTool::type()
46
46
47
47
void MoveTool::loadSettings ()
48
48
{
49
+ QSettings settings (PENCIL2D, PENCIL2D);
50
+
49
51
properties.width = -1 ;
50
52
properties.feather = -1 ;
51
53
properties.useFeather = false ;
52
54
properties.stabilizerLevel = -1 ;
53
- properties.useAA = - 1 ;
55
+ properties.useAA = settings. value ( " moveAA " ). toBool () ;
54
56
mRotationIncrement = mEditor ->preference ()->getInt (SETTING::ROTATION_INCREMENT);
55
- QSettings settings (PENCIL2D, PENCIL2D);
56
57
properties.showSelectionInfo = settings.value (" ShowSelectionInfo" ).toBool ();
57
58
mPropertyEnabled [SHOWSELECTIONINFO] = true ;
59
+ mPropertyEnabled [ANTI_ALIASING] = true ;
58
60
59
61
connect (mEditor ->preference (), &PreferenceManager::optionChanged, this , &MoveTool::updateSettings);
60
62
}
@@ -64,6 +66,7 @@ void MoveTool::saveSettings()
64
66
QSettings settings (PENCIL2D, PENCIL2D);
65
67
66
68
settings.setValue (" ShowSelectionInfo" , properties.showSelectionInfo );
69
+ settings.setValue (" moveAA" , properties.useAA );
67
70
68
71
settings.sync ();
69
72
}
@@ -338,6 +341,9 @@ bool MoveTool::leavingThisTool()
338
341
{
339
342
applyTransformation ();
340
343
}
344
+
345
+ saveSettings ();
346
+
341
347
return true ;
342
348
}
343
349
@@ -349,6 +355,7 @@ bool MoveTool::isActive() const {
349
355
void MoveTool::resetToDefault ()
350
356
{
351
357
setShowSelectionInfo (false );
358
+ setAA (true );
352
359
}
353
360
354
361
void MoveTool::setShowSelectionInfo (const bool b)
0 commit comments