Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
linev committed Apr 26, 2024
1 parent f363187 commit b8e05cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/gpad/TPadPainter.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1204,8 +1204,8 @@ class TPadPainter extends ObjectPainter {
menu.add('Save to gStyle', () => {
if (!this.pad) return;
this.fillatt?.saveToStyle(this.iscan ? 'fCanvasColor' : 'fPadColor');
gStyle.fPadGridX = this.pad.fGridX;
gStyle.fPadGridY = this.pad.fGridX;
gStyle.fPadGridX = this.pad.fGridx;
gStyle.fPadGridY = this.pad.fGridy;
gStyle.fPadTickX = this.pad.fTickx;
gStyle.fPadTickY = this.pad.fTicky;
gStyle.fOptLogx = this.pad.fLogx;
Expand Down

0 comments on commit b8e05cd

Please sign in to comment.