Browse Source

add sort to output

David Rose 24 years ago
parent
commit
2991a6562c
1 changed files with 3 additions and 1 deletions
  1. 3 1
      panda/src/tform/mouseWatcherRegion.cxx

+ 3 - 1
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";
 }
 
 ////////////////////////////////////////////////////////////////////