mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-19 09:35:36 -05:00
Only update hover execution state if cell is not active. (#19073)
This commit is contained in:
@@ -287,7 +287,10 @@ export class CellModel extends Disposable implements ICellModel {
|
||||
|
||||
public set hover(value: boolean) {
|
||||
this._hover = value;
|
||||
this.fireExecutionStateChanged();
|
||||
// The Run button is always visible while the cell is active, so we only need to emit this event for inactive cells
|
||||
if (!this.active) {
|
||||
this.fireExecutionStateChanged();
|
||||
}
|
||||
}
|
||||
|
||||
public get executionCount(): number | undefined {
|
||||
|
||||
Reference in New Issue
Block a user