|
@@ -82,6 +82,15 @@ export class SIconTextItem extends SObjectItem {
|
|
|
} // Get isActive
|
|
|
set isActive(v: boolean) {
|
|
|
this._isActive = v;
|
|
|
+ if (v) {
|
|
|
+ this.cursor = "pointer";
|
|
|
+ this.textItem.cursor = "pointer";
|
|
|
+ this.img.cursor = "pointer";
|
|
|
+ } else {
|
|
|
+ this.cursor = "auto";
|
|
|
+ this.textItem.cursor = "auto";
|
|
|
+ this.img.cursor = "auto";
|
|
|
+ }
|
|
|
this.update();
|
|
|
} // Set isActive
|
|
|
|