From 2991a6562cb6c052c3f3a7da2004c62a8b8adb98 Mon Sep 17 00:00:00 2001 From: David Rose Date: Fri, 2 Nov 2001 01:02:30 +0000 Subject: [PATCH] add sort to output --- panda/src/tform/mouseWatcherRegion.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/panda/src/tform/mouseWatcherRegion.cxx b/panda/src/tform/mouseWatcherRegion.cxx index 093cfd89d9..79bb3848b1 100644 --- a/panda/src/tform/mouseWatcherRegion.cxx +++ b/panda/src/tform/mouseWatcherRegion.cxx @@ -40,7 +40,9 @@ output(ostream &out) const { //////////////////////////////////////////////////////////////////// void MouseWatcherRegion:: write(ostream &out, int indent_level) const { - indent(out, indent_level) << get_name() << " lrbt = " << _frame << "\n"; + indent(out, indent_level) + << get_name() << " lrbt = " << _frame + << ", sort = " << _sort << "\n"; } ////////////////////////////////////////////////////////////////////