[DE] Fix Bug 50191
This commit is contained in:
parent
fdda540c47
commit
96d6be31bc
|
@ -383,7 +383,7 @@ define([
|
||||||
|
|
||||||
onLikeTextColor: function(item, state) {
|
onLikeTextColor: function(item, state) {
|
||||||
if (!!state) {
|
if (!!state) {
|
||||||
var color = Common.Utils.ThemeColor.getHexColor(255, 255, 255);
|
var color = Common.Utils.ThemeColor.getHexColor(0, 0, 0);
|
||||||
this.btnColor.setColor(color);
|
this.btnColor.setColor(color);
|
||||||
this.colors.clearSelection();
|
this.colors.clearSelection();
|
||||||
if (this._changedProps) {
|
if (this._changedProps) {
|
||||||
|
@ -539,7 +539,7 @@ define([
|
||||||
this.colors.select(color,true);
|
this.colors.select(color,true);
|
||||||
} else {
|
} else {
|
||||||
this.colors.clearSelection();
|
this.colors.clearSelection();
|
||||||
color = (color && color.get_auto()) ? '000000' : 'ffffff';
|
color = '000000';
|
||||||
}
|
}
|
||||||
this.btnColor.setColor(color);
|
this.btnColor.setColor(color);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue