diff --git a/VersionNum b/VersionNum index 76139bbacea334489b39b1cd9df665d0a89e4605..ffba6aed73832cd8950655b8e53d210107a30613 100644 --- a/VersionNum +++ b/VersionNum @@ -1,21 +1,21 @@ -/* (0.45) +/* (0.46) * * This file is automatically maintained by srccommit, do not edit manually. * */ -#define Module_MajorVersion_CMHG 0.45 +#define Module_MajorVersion_CMHG 0.46 #define Module_MinorVersion_CMHG -#define Module_Date_CMHG 25 Jan 2023 +#define Module_Date_CMHG 24 Mar 2025 -#define Module_MajorVersion "0.45" -#define Module_Version 45 +#define Module_MajorVersion "0.46" +#define Module_Version 46 #define Module_MinorVersion "" -#define Module_Date "25 Jan 2023" +#define Module_Date "24 Mar 2025" -#define Module_ApplicationDate "25-Jan-23" +#define Module_ApplicationDate "24-Mar-25" #define Module_ComponentName "Gadgets" -#define Module_FullVersion "0.45" -#define Module_HelpVersion "0.45 (25 Jan 2023)" -#define Module_LibraryVersionInfo "0:45" +#define Module_FullVersion "0.46" +#define Module_HelpVersion "0.46 (24 Mar 2025)" +#define Module_LibraryVersionInfo "0:46" diff --git a/c/ScrollList b/c/ScrollList index b51e3d174e7626a642a768316d36ac655671dcfa..8266d54e6f49685c641aa47c664a15de3246e496 100644 --- a/c/ScrollList +++ b/c/ScrollList @@ -1264,9 +1264,9 @@ _kernel_oserror *scrolllist_plot(ScrollList *sdata) return e; box.xmin = sdata->hdr.xmin; - box.xmax = sdata->hdr.xmax; box.ymin = sdata->hdr.ymin; - box.ymax = sdata->hdr.ymax; + box.xmax = sdata->hdr.xmax - 1; /* Make inclusive for OS_Plot */ + box.ymax = sdata->hdr.ymax - 1; /* Make inclusive for OS_Plot */ label.bbox = box; work_to_screen(&box, &state); diff --git a/c/TextArea b/c/TextArea index 9fdba9327bf65c103101e259035f6580577773ff..8fcb12549fbfd01a516522d64bae735617205d2c 100644 --- a/c/TextArea +++ b/c/TextArea @@ -464,8 +464,8 @@ _kernel_oserror *textarea_plot(TextArea *tdata) box.xmin = tdata->hdr.xmin; box.ymin = tdata->hdr.ymin; - box.xmax = tdata->hdr.xmax; - box.ymax = tdata->hdr.ymax; + box.xmax = tdata->hdr.xmax - 1; /* Make inclusive for OS_Plot */ + box.ymax = tdata->hdr.ymax - 1; /* Make inclusive for OS_Plot */ label.bbox = box; work_to_screen(&box, &state);