Restore wxButton's feature to use focus bitmap for hover state (wxMSW)

Prior to 2.9.2, if the focus bitmap was specified but current one wasn't, the focus bitmap was used for hovering as well.
This feature was entirely discarded in b4354db179 (see wxBitmapButton::DoSetBitmap) but it is still described in the documentation of wxButton's states and images. It seems it was removed unintentionally, so let's restore it.
This commit is contained in:
Artur Wieczorek
2017-09-06 14:09:29 +02:00
parent 52d6b0ae85
commit 627870be90
2 changed files with 14 additions and 1 deletions

View File

@@ -42,7 +42,7 @@
@li @b current: bitmap shown when the mouse is over the button (but it is
not pressed although it may have focus). Notice that if current bitmap
is not specified but the current platform UI uses hover images for the
buttons (such as Windows XP or GTK+), then the focus bitmap is used for
buttons (such as Windows or GTK+), then the focus bitmap is used for
hover state as well. This makes it possible to set focus bitmap only to
get reasonably good behaviour on all platforms.