summaryrefslogtreecommitdiff
path: root/src/gui/widgets/popup.h
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2009-05-05 23:48:45 +0200
committerBjørn Lindeijer <bjorn@lindeijer.nl>2009-05-05 23:51:09 +0200
commit3c4661726f9321e91037291fcf628a54b993c4ec (patch)
treed2024fecd35a0f769a538bebdafd4aa5340f7b6a /src/gui/widgets/popup.h
parent5a9759680427154f379499cb3268f307bb860c22 (diff)
downloadmana-client-3c4661726f9321e91037291fcf628a54b993c4ec.tar.gz
mana-client-3c4661726f9321e91037291fcf628a54b993c4ec.tar.bz2
mana-client-3c4661726f9321e91037291fcf628a54b993c4ec.tar.xz
mana-client-3c4661726f9321e91037291fcf628a54b993c4ec.zip
Hide the item popup when the mouse moves on top of it
Makes the popup a lot less annoying. Still sticks around in some cases when it shouldn't, which seems to be because of missing mouseExited events from Guichan.
Diffstat (limited to 'src/gui/widgets/popup.h')
-rw-r--r--src/gui/widgets/popup.h14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/gui/widgets/popup.h b/src/gui/widgets/popup.h
index 895484b0..119ed841 100644
--- a/src/gui/widgets/popup.h
+++ b/src/gui/widgets/popup.h
@@ -32,12 +32,14 @@ class Skin;
class WindowContainer;
/**
- * A rather reduced down version of the Window class that is particularly suited
- * for popup type functionality that doesn't need to be resized or moved around
- * by the mouse once created, but only needs to display some simple content,
- * like a static message. Popups, in general, shouldn't also need to update
- * their content once created, although this is not an explicit requirement to
- * use the popup class.
+ * A light version of the Window class. Particularly suited for popup type
+ * functionality that doesn't need to be resized or moved around by the mouse
+ * once created, but only needs to display some simple content, like a static
+ * message.
+ *
+ * Popups, in general, shouldn't also need to update their content once
+ * created, although this is not an explicit requirement to use the popup
+ * class.
*
* \ingroup GUI
*/