~ubuntu-branches/debian/sid/gmsh/sid

« back to all changes in this revision

Viewing changes to Fltk/pluginWindow.cpp

  • Committer: Package Import Robot
  • Author(s): Anton Gladky
  • Date: 2015-08-26 22:45:27 UTC
  • mfrom: (1.3.25)
  • Revision ID: package-import@ubuntu.com-20150826224527-wiqnz3dwz6ap8tty
Tags: 2.10.1+dfsg1-1
* [4c450d1] Update d/watch.
* [90ca918] Imported Upstream version 2.10.1+dfsg1. (Closes: #793245)
* [af26665] Use any-arch instead of list of archs.
* [e94c6d2] Refresh patches.
* [6ab417f] Update d/copyright.

Show diffs side-by-side

added added

removed removed

Lines of Context:
315
315
  browser->callback(plugin_browser_cb);
316
316
  browser->box(GMSH_SIMPLE_RIGHT_BOX);
317
317
  browser->has_scrollbar(Fl_Browser_::VERTICAL);
 
318
  browser->scrollbar_size(std::max(10, FL_NORMAL_SIZE - 2)); // thinner scrollbars
318
319
 
319
320
  view_browser = new Fl_Multi_Browser(L1, 0, L2, height);
320
321
  view_browser->has_scrollbar(Fl_Browser_::VERTICAL);
 
322
  view_browser->scrollbar_size(std::max(10, FL_NORMAL_SIZE - 2)); // thinner scrollbars
321
323
  view_browser->callback(plugin_browser_cb);
322
324
  view_browser->box(GMSH_SIMPLE_RIGHT_BOX);
323
325
 
394
396
 
395
397
  plugin_browser_cb(NULL, NULL);
396
398
}
397