diff --git a/wx/lib/agw/scrolledthumbnail.py b/wx/lib/agw/scrolledthumbnail.py index 340412d9..d10b0ac0 100644 --- a/wx/lib/agw/scrolledthumbnail.py +++ b/wx/lib/agw/scrolledthumbnail.py @@ -1984,9 +1984,9 @@ class ScrolledThumbnail(wx.ScrolledWindow): (1) ``d`` key rotates 90 degrees clockwise the selected thumbnails; (2) ``s`` key rotates 90 degrees counter-clockwise the selected thumbnails; (3) ``a`` key rotates 180 degrees the selected thumbnails; - (4) ``Del`` key deletes the selected thumbnails; - (5) ``+`` key zooms in; - (6) ``-`` key zooms out. + (4) ``+`` key zooms in; + (5) ``-`` key zooms out. + All other keys cause an EVT_THUMBNAILS_CHAR event to be thrown. """ if event.KeyCode == ord("s"): diff --git a/wx/lib/agw/thumbnailctrl.py b/wx/lib/agw/thumbnailctrl.py index 97ef39e3..53a8856f 100644 --- a/wx/lib/agw/thumbnailctrl.py +++ b/wx/lib/agw/thumbnailctrl.py @@ -153,8 +153,8 @@ import wx import os import time -from wx.lib.agw.scrolledthumbnail import ScrolledThumbnail, EVT_THUMBNAILS_CHAR, \ -PILImageHandler, NativeImageHandler, Thumb +from wx.lib.agw.scrolledthumbnail import (ScrolledThumbnail, EVT_THUMBNAILS_CHAR, +PILImageHandler, NativeImageHandler, Thumb) # Image File Name Extensions: Am I Missing Some Extensions Here? extensions = [".jpeg", ".jpg", ".bmp", ".png", ".ico", ".tiff", ".ani", ".cur", ".gif",