commit d3aa9fed9b0feffd5cc046d0729fc90c7c53c96e Author: Arthur Edelstein arthuredelstein@gmail.com Date: Mon Nov 21 10:15:53 2016 -0800
Bug 20728: Fix bad preferences.xul dimensions --- src/chrome/content/preferences.xul | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/src/chrome/content/preferences.xul b/src/chrome/content/preferences.xul index c6432e0..bb6e31f 100644 --- a/src/chrome/content/preferences.xul +++ b/src/chrome/content/preferences.xul @@ -13,9 +13,9 @@ onload="torbutton_init_security_ui()" align="stretch" pack="center" - maxheight="300" - minwidth="300" - maxwidth="400" + maxheight="350" + minwidth="400" + maxwidth="600" ondialogaccept="torbutton_save_security_settings()" width="400" >
@@ -57,9 +57,7 @@ </vbox> </hbox> </vbox> - <!-- A width of 400 is already too much for OS X it seems. The above - spacer tag would basically be useless and the layout ugly. --> - <vbox flex="1" width="300" style="overflow: auto;"> + <vbox flex="1" width="400" style="overflow: auto;"> <vbox id="desc_high" collapsed="true"> <description class="slider-text-size, slider-text-weight">
tbb-commits@lists.torproject.org