You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While trying to figure out how to remove the margins from the graph, I kept having issues removing the last bit of margins. I believe these 4 lines prevent the margins from full being removed. It looks like qMax was used instead of qMin? Though I am not aware of the intentions of these lines and what changing them may break elsewhere. I changed these lines to qMin with seemingly no issues on my local.
line 919 : if (s.elongateMax>0) elongateRight=qMax(elongateRight,s.elongateMax);
line 922 : if (s.elongateMax>0) elongateRight=qMax(elongateRight,s.elongateMax);
line 928 : if (s.elongateMax>0) elongateTop=qMax(elongateTop,s.elongateMax);
line 932 : if (s.elongateMax>0) elongateTop=qMax(elongateTop,s.elongateMax);
The text was updated successfully, but these errors were encountered:
jkqtbaseplotter.cpp
While trying to figure out how to remove the margins from the graph, I kept having issues removing the last bit of margins. I believe these 4 lines prevent the margins from full being removed. It looks like qMax was used instead of qMin? Though I am not aware of the intentions of these lines and what changing them may break elsewhere. I changed these lines to qMin with seemingly no issues on my local.
line 919 : if (s.elongateMax>0) elongateRight=qMax(elongateRight,s.elongateMax);
line 922 : if (s.elongateMax>0) elongateRight=qMax(elongateRight,s.elongateMax);
line 928 : if (s.elongateMax>0) elongateTop=qMax(elongateTop,s.elongateMax);
line 932 : if (s.elongateMax>0) elongateTop=qMax(elongateTop,s.elongateMax);
The text was updated successfully, but these errors were encountered: