summaryrefslogtreecommitdiff
path: root/test/browser.cxx
diff options
context:
space:
mode:
authorBill Spitzak <spitzak@gmail.com>1999-04-26 06:45:29 +0000
committerBill Spitzak <spitzak@gmail.com>1999-04-26 06:45:29 +0000
commit5bf457ac24f4ac27ac75eafe8cb6f697c8b10ca5 (patch)
treeb9a00fb82d1a0e606221eff567dbc14e4a4c352a /test/browser.cxx
parente46a0be2b5b2bdb524b3c49462fcd3cd11bf5ff6 (diff)
Tab, space, backtab, and backspace can be used to navigate through menus.
They act like up/down arrows except they circulate around at the end. Fixed a typo in fluid that made it not write when() correctly. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@559 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test/browser.cxx')
-rw-r--r--test/browser.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/browser.cxx b/test/browser.cxx
index 12d3a4555..89e13e16d 100644
--- a/test/browser.cxx
+++ b/test/browser.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: browser.cxx,v 1.5 1999/01/07 19:17:49 mike Exp $"
+// "$Id: browser.cxx,v 1.5.2.1 1999/04/26 06:45:28 bill Exp $"
//
// Browser test program for the Fast Light Tool Kit (FLTK).
//
@@ -80,6 +80,7 @@ int main(int argc, char **argv) {
window.box(FL_NO_BOX); // because it is filled with browser
Fl_Select_Browser browser(0,0,400,400,0);
browser.type(FL_MULTI_BROWSER);
+ //browser.color(42);
browser.callback(b_cb);
// browser.scrollbar_right();
//browser.has_scrollbar(Fl_Browser::BOTH_ALWAYS);
@@ -94,6 +95,6 @@ int main(int argc, char **argv) {
}
//
-// End of "$Id: browser.cxx,v 1.5 1999/01/07 19:17:49 mike Exp $".
+// End of "$Id: browser.cxx,v 1.5.2.1 1999/04/26 06:45:28 bill Exp $".
//