From: Erik V. <ev...@us...> - 2009-11-16 18:11:29
|
Update of /cvsroot/rails/18xx/rails/ui/swing In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv15356/rails/ui/swing Modified Files: StartRoundWindow.java Log Message: Fixed bug that left BidAmount disabled after a reload Index: StartRoundWindow.java =================================================================== RCS file: /cvsroot/rails/18xx/rails/ui/swing/StartRoundWindow.java,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** StartRoundWindow.java 30 Oct 2009 21:53:04 -0000 1.32 --- StartRoundWindow.java 16 Nov 2009 18:11:19 -0000 1.33 *************** *** 468,472 **** buyButton.setEnabled(buyAllowed); ! if (includeBidding) bidButton.setEnabled(bidAllowed); passButton.setEnabled(passAllowed); --- 468,475 ---- buyButton.setEnabled(buyAllowed); ! if (includeBidding) { ! bidButton.setEnabled(bidAllowed); ! bidAmount.setEnabled(bidAllowed); ! } passButton.setEnabled(passAllowed); |