diff options
author | Regis Cosnier <regis.cosnier@gmail.com> | 2011-09-29 12:21:05 +0200 |
---|---|---|
committer | Regis Cosnier <regis.cosnier@gmail.com> | 2011-09-29 12:21:05 +0200 |
commit | 78657268ddabeb7af1135ce3e9e02c750ab0e5dd (patch) | |
tree | f4fdfa4cb9fec8dcae90389a611d264c6e4c92e0 | |
parent | 9d53da155722f532a1178921bd487f0ddb2729f2 (diff) | |
download | Multiproxy-Switch-78657268ddabeb7af1135ce3e9e02c750ab0e5dd.tar.gz |
I fix a bug about the status and toolbar dropdown menu transparency.
Because on my Windows 7 64bit, this dropdown menu is transparent, and it should not be!
It was just a matter of setting the popup style:
<popup ... style="-moz-appearance:menupopup">
-rw-r--r-- | src/chrome/content/proxy.xul | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chrome/content/proxy.xul b/src/chrome/content/proxy.xul index b0cb91a..fd6cb11 100644 --- a/src/chrome/content/proxy.xul +++ b/src/chrome/content/proxy.xul @@ -112,7 +112,7 @@ <!-- Popups -->
<popupset id="mainPopupSet">
- <popup id="mproxy-element-list" position="after_start" onpopupshowing="mproxy_showElementList(event);">
+ <popup id="mproxy-element-list" position="after_start" onpopupshowing="mproxy_showElementList(event);" style="-moz-appearance:menupopup">
<menuitem label="&common.none;" type="checkbox" checked="true" oncommand="mproxy_queueSetProxy(this);" class="proxy-menu-item"/>
<menuseparator id="mproxy-element-list-separator" />
<menuitem label="&common.manage.label;" accesskey="&common.manage.key;" oncommand="mproxy_openProxyManager();" />
|