Fix View Code Pane Overflow

This commit is contained in:
Ankit Mahato
2023-07-20 01:54:16 +05:30
parent bf49a56c0f
commit 2276fcfe1a
2 changed files with 49 additions and 38 deletions

View File

@ -10,3 +10,7 @@ bool showButtonLabelsInBodySuccess(int options, double maxWidth) {
return false;
}
}
bool showButtonLabelsInViewCodePane(double maxWidth) {
return (maxWidth < 400) ? false : true;
}