Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEveraldo Canuto <everaldo@mono-cvs.ximian.com>2008-11-25 17:02:48 +0300
committerEveraldo Canuto <everaldo@mono-cvs.ximian.com>2008-11-25 17:02:48 +0300
commitc43c7090b668525e8d6730206883b76b1cd7e8c1 (patch)
tree034fb6dfd1a0d6fbb1216c2c14d8e4f41a57183e
parent5334d00d47a153320e17a972fd4d41a57bf2b251 (diff)
2008-11-24 Everaldo Canuto <ecanuto@novell.com>mono-2-2-p1
* PrintPreviewDialog.cs: Fix toolbar size, height must be 26. Fixes bug #413501. svn path=/tags/mono-2-2/mcs/; revision=119950
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog5
-rw-r--r--mcs/class/Managed.Windows.Forms/System.Windows.Forms/PrintPreviewDialog.cs2
2 files changed, 6 insertions, 1 deletions
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
index 281ef4bfa7a..7bfa1069dbe 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/ChangeLog
@@ -1,3 +1,8 @@
+2008-11-24 Everaldo Canuto <ecanuto@novell.com>
+
+ * PrintPreviewDialog.cs: Fix toolbar size, height must be 26. Fixes bug
+ #413501.
+
2008-11-10 Jonathan Pobst <monkey@jpobst.com>
* TextControl.cs: Add some order of operation to our math so
diff --git a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/PrintPreviewDialog.cs b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/PrintPreviewDialog.cs
index 4b6a43df6e5..5ac9f9383df 100644
--- a/mcs/class/Managed.Windows.Forms/System.Windows.Forms/PrintPreviewDialog.cs
+++ b/mcs/class/Managed.Windows.Forms/System.Windows.Forms/PrintPreviewDialog.cs
@@ -100,7 +100,7 @@ namespace System.Windows.Forms {
pageUpDown = new NumericUpDown();
toolbar.ImageList = image_list;
- toolbar.Size = new Size(792, 43);
+ toolbar.Size = new Size(792, 26);
toolbar.Dock = DockStyle.Top;
toolbar.Appearance = ToolBarAppearance.Flat;
toolbar.ShowToolTips = true;