summaryrefslogtreecommitdiff
path: root/test/unittest_scrollbarsize.cxx
diff options
context:
space:
mode:
authorGreg Ercolano <erco@seriss.com>2011-07-17 16:40:41 +0000
committerGreg Ercolano <erco@seriss.com>2011-07-17 16:40:41 +0000
commit6fa9df7e90817a3572b01486869b684adf384ff2 (patch)
tree6a56f99da5899be2749093bf41caa8b1cb560e7c /test/unittest_scrollbarsize.cxx
parent46d9c4553655b53568356114719ecd510fd66cc3 (diff)
Fixing STR #2679; Fl_Table makes use of FLTK's Fl::scrollbar_size() global.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8863 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test/unittest_scrollbarsize.cxx')
-rw-r--r--test/unittest_scrollbarsize.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/unittest_scrollbarsize.cxx b/test/unittest_scrollbarsize.cxx
index b3079d6f9..d173bcc16 100644
--- a/test/unittest_scrollbarsize.cxx
+++ b/test/unittest_scrollbarsize.cxx
@@ -135,6 +135,7 @@ class ScrollBarSizeTest : public Fl_Group {
if ( strcmp(label,"A: Scroll Size") == 0 ) {
brow_a->scrollbar_size(val);
tree_a->scrollbar_size(val);
+ //table_a->scrollbar_size(val); // awaiting method (ABI)
} else {
Fl::scrollbar_size(val);
}
@@ -211,7 +212,7 @@ public:
"Scrollbar's size should change interactively as size sliders are changed.\n"
"Changing 'Global Scroll Size' should affect all three browser's scrollbars UNLESS\n"
"the 'A: Scroll Size' slider is changed, in which case its value will take precedence\n"
- "for 'Browser A', and the global size will only affect Browser B and C.");
+ "for the 'A' group of widgets. (NOTE: 'table_a' does not currently support this)");
labelsize(10);
align(FL_ALIGN_INSIDE|FL_ALIGN_BOTTOM|FL_ALIGN_LEFT|FL_ALIGN_WRAP);
}