Author: jleroux
Date: Sat Jul 29 02:39:28 2006
New Revision: 426770
URL: 
http://svn.apache.org/viewvc?rev=426770&view=revLog:
Added a comment about why the vertical bar on journal panel is always visible
Modified:
    incubator/ofbiz/trunk/applications/pos/src/org/ofbiz/pos/component/Journal.java
Modified: incubator/ofbiz/trunk/applications/pos/src/org/ofbiz/pos/component/Journal.java
URL: 
http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/pos/src/org/ofbiz/pos/component/Journal.java?rev=426770&r1=426769&r2=426770&view=diff==============================================================================
--- incubator/ofbiz/trunk/applications/pos/src/org/ofbiz/pos/component/Journal.java (original)
+++ incubator/ofbiz/trunk/applications/pos/src/org/ofbiz/pos/component/Journal.java Sat Jul 29 02:39:28 2006
@@ -44,12 +44,14 @@
     protected XTable jtable = null;
     protected String style = null;
 
-    public Journal(PosScreen page) {
-        this.jtable = (XTable) page.findComponent("jtable");
+    public Journal(PosScreen page) {    	
+        //The vertical bar is always visible to allow the access at the horizontal bar without shrink the journal panel
         this.jpanel = (XScrollPane) page.findComponent("journal_panel");
         this.jpanel.setVisible(false);
-                
-        // set the table as selectable                
+        
+        this.jtable = (XTable) page.findComponent("jtable");
+                        
+        // set the table as selectable        
         jtable.setInteractiveTable(true);
         jtable.setFocusable(false);