hourglass: reduce animation timeout

Origin commit data
------------------
Branch: ni/coolstream
Commit: 4fe5f666bc
Author: vanhofen <vanhofen@gmx.de>
Date: 2021-10-10 (Sun, 10 Oct 2021)

Origin message was:
------------------
- hourglass: reduce animation timeout

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2021-10-10 13:10:54 +02:00
parent b2c97d6789
commit 9ea88dd075

View File

@@ -61,7 +61,7 @@ class CHourGlass : public CComponentsShapeSquare
* The max count of images are defined in MAX_IMAGES.
* Images must be stored as usual inside the defined icon directories.
* @param[in] interval
* @li optional: expects type int64_t, defines paint interval, default = 84ms
* @li optional: expects type int64_t, defines paint interval, default = 75ms
* @param[in] parent
* @li optional: expects type CComponentsForm, as a parent container in which this object is embedded, default = NULL (stand alone)
* @param[in] shadow_mode
@@ -81,7 +81,7 @@ class CHourGlass : public CComponentsShapeSquare
const int w = 48,
const int h = 48,
const std::string& image_basename = "hourglass",
const int64_t& interval = 84,
const int64_t& interval = 75,
CComponentsForm *parent = NULL,
int shadow_mode = CC_SHADOW_OFF,
fb_pixel_t color_frame = COL_FRAME_PLUS_0,
@@ -122,7 +122,7 @@ class CHourGlassProc : public CHourGlass
const int w = 48,
const int h = 48,
const std::string& image_basename = "hourglass",
const int64_t& interval = 84,
const int64_t& interval = 75,
CComponentsForm *parent = NULL,
int shadow_mode = CC_SHADOW_OFF,
fb_pixel_t color_frame = COL_FRAME_PLUS_0,