summaryrefslogtreecommitdiff
path: root/src/Fl_Help_View.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-02-20 19:29:57 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-02-20 19:29:57 +0000
commit0372675ee12e54acd993f6d25a9489c1373caf75 (patch)
tree4a9a9f67c399c3bf7c916e87622affd07fa9bbb4 /src/Fl_Help_View.cxx
parent50274f8d85151d82b8f7945d9de044fe5e74bd52 (diff)
Always resize cells in table if set/max width not the same as the
column width. Pass UNFOCUS events to parent groups, too (for Fl_Tabs) Conditionally compile in support for TrackMouseEvent(), since support for it is spotty at best. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1966 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/Fl_Help_View.cxx')
-rw-r--r--src/Fl_Help_View.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Fl_Help_View.cxx b/src/Fl_Help_View.cxx
index 41b7e1355..5cb3ed37c 100644
--- a/src/Fl_Help_View.cxx
+++ b/src/Fl_Help_View.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Help_View.cxx,v 1.1.2.26 2002/02/20 13:02:27 easysw Exp $"
+// "$Id: Fl_Help_View.cxx,v 1.1.2.27 2002/02/20 19:29:57 easysw Exp $"
//
// Fl_Help_View widget routines.
//
@@ -1831,7 +1831,7 @@ Fl_Help_View::format_table(int *table_width, // O - Total table width
else scale_width = width;
}
- if (width > scale_width)
+ if (width != scale_width)
{
// printf("width = %d, scale_width = %d\n", width, scale_width);
@@ -2627,5 +2627,5 @@ hscrollbar_callback(Fl_Widget *s, void *)
//
-// End of "$Id: Fl_Help_View.cxx,v 1.1.2.26 2002/02/20 13:02:27 easysw Exp $".
+// End of "$Id: Fl_Help_View.cxx,v 1.1.2.27 2002/02/20 19:29:57 easysw Exp $".
//