Commit e458c2d9 authored by ROOL's avatar ROOL :robot:
Browse files

Fix to painting non-square sprites in a list

Detail:
  Correction to argument order when getting the sprite size.
Admin:
  Spotted during work on the Git source control client.

Version 0.45. Tagged as 'Gadgets-0_45'
No related merge requests found
/* (0.44)
/* (0.45)
*
* This file is automatically maintained by srccommit, do not edit manually.
* Last processed by srccommit version: 1.1.
*
*/
#define Module_MajorVersion_CMHG 0.44
#define Module_MinorVersion_CMHG
#define Module_Date_CMHG 09 Feb 2018
#define Module_MajorVersion_CMHG 0.45
#define Module_MinorVersion_CMHG
#define Module_Date_CMHG 18 Aug 2021
#define Module_MajorVersion "0.44"
#define Module_Version 44
#define Module_MajorVersion "0.45"
#define Module_Version 45
#define Module_MinorVersion ""
#define Module_Date "09 Feb 2018"
#define Module_Date "18 Aug 2021"
#define Module_ApplicationDate "09-Feb-18"
#define Module_ApplicationDate "18-Aug-21"
#define Module_ComponentName "Gadgets"
#define Module_ComponentPath "castle/RiscOS/Sources/Toolbox/Gadgets"
#define Module_FullVersion "0.44"
#define Module_HelpVersion "0.44 (09 Feb 2018)"
#define Module_LibraryVersionInfo "0:44"
#define Module_FullVersion "0.45"
#define Module_HelpVersion "0.45 (18 Aug 2021)"
#define Module_LibraryVersionInfo "0:45"
......@@ -324,7 +324,7 @@ static void _get_item_size(const PrivateScrollList *sdata,
unsigned int item_height, font_height, item_width;
int base;
_get_size_of_sprites(sdata, &item_height, &item_width);
_get_size_of_sprites(sdata, &item_width, &item_height);
if (height)
{
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment