diff options
-rw-r--r-- | gtk/PlatGTK.cxx | 2 | ||||
-rw-r--r-- | win32/PlatWin.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index d98c23530..91fafcc9b 100644 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -1858,7 +1858,7 @@ void ListBoxX::RegisterImage(int type, const char *xpm_data) { } void ListBoxX::RegisterRGBAImage(int type, int width, int height, const unsigned char *pixelsImage) { - RegisterRGBA(type, new RGBAImage(width, height, pixelsImage)); + RegisterRGBA(type, new RGBAImage(width, height, 1.0, pixelsImage)); } void ListBoxX::ClearRegisteredImages() { diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index 723995407..2dfdfb1ee 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -2388,7 +2388,7 @@ void ListBoxX::RegisterImage(int type, const char *xpm_data) { } void ListBoxX::RegisterRGBAImage(int type, int width, int height, const unsigned char *pixelsImage) { - images.Add(type, new RGBAImage(width, height, pixelsImage)); + images.Add(type, new RGBAImage(width, height, 1.0, pixelsImage)); } void ListBoxX::ClearRegisteredImages() { |