Show recent colors in color picker

This commit is contained in:
Andrii Chubko 2021-09-20 18:51:40 +03:00
parent b483fc64d2
commit 0a80588dd4
2 changed files with 3 additions and 3 deletions

View File

@ -56,6 +56,6 @@ android {
}
dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:ac45c5e893'
implementation 'com.github.SimpleMobileTools:Simple-Commons:f7575dcaa1'
implementation "androidx.print:print:1.0.0"
}

View File

@ -318,7 +318,7 @@ class MainActivity : SimpleActivity(), CanvasListener {
private fun changeBackgroundClicked() {
val oldColor = (my_canvas.background as ColorDrawable).color
ColorPickerDialog(this, oldColor) { wasPositivePressed, color ->
ColorPickerDialog(this, oldColor, showRecentColors = true) { wasPositivePressed, color ->
if (wasPositivePressed) {
config.canvasBackgroundColor = color
setBackgroundColor(color)
@ -479,7 +479,7 @@ class MainActivity : SimpleActivity(), CanvasListener {
}
private fun pickColor() {
ColorPickerDialog(this, color) { wasPositivePressed, color ->
ColorPickerDialog(this, color, showRecentColors = true) { wasPositivePressed, color ->
if (wasPositivePressed) {
setColor(color)
}