summaryrefslogtreecommitdiff
path: root/render/html_internal.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2011-06-28 11:15:39 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2011-06-28 11:15:39 +0000
commit5c9155e60658b7d253f9d681cbd16b1a5eb1d7ba (patch)
tree681a5537f18f887ef322b5260999bd613b7b3863 /render/html_internal.h
parente70d4947ea126639b2e963e357e2e1bdd6526869 (diff)
downloadnetsurf-5c9155e60658b7d253f9d681cbd16b1a5eb1d7ba.tar.gz
netsurf-5c9155e60658b7d253f9d681cbd16b1a5eb1d7ba.tar.bz2
Core form select widget now associated with HTML contents. Don't use current_redraw_browser for select widget redraw. Fixes core select widget in iframes.
svn path=/trunk/netsurf/; revision=12522
Diffstat (limited to 'render/html_internal.h')
-rw-r--r--render/html_internal.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/render/html_internal.h b/render/html_internal.h
index ad7235313..f9d116348 100644
--- a/render/html_internal.h
+++ b/render/html_internal.h
@@ -88,6 +88,10 @@ typedef struct html_content {
/** Scrollbar capturing all mouse events, updated to any active HTML
* scrollbar, or NULL when no scrollbar drags active */
struct scrollbar *scrollbar;
+
+ /** Open core-handled form SELECT menu,
+ * or NULL if none currently open. */
+ struct form_control *visible_select_menu;
} html_content;