Author: nextgens
Date: 2008-04-08 16:21:33 +0000 (Tue, 08 Apr 2008)
New Revision: 19081

Modified:
   trunk/apps/thingamablog/src/net/sf/thingamablog/gui/editor/EntryEditor.java
Log:
thingamablog: allow the user to edit his posts without notifying everyone

Modified: 
trunk/apps/thingamablog/src/net/sf/thingamablog/gui/editor/EntryEditor.java
===================================================================
--- trunk/apps/thingamablog/src/net/sf/thingamablog/gui/editor/EntryEditor.java 
2008-04-08 15:38:11 UTC (rev 19080)
+++ trunk/apps/thingamablog/src/net/sf/thingamablog/gui/editor/EntryEditor.java 
2008-04-08 16:21:33 UTC (rev 19081)
@@ -331,7 +331,7 @@

         markModifiedCb = new JCheckBox(i18n.str("mark_as_modified")); 
//$NON-NLS-1$
         markModifiedCb.setSelected(true);
-        markModifiedCb.setEnabled(!entry.isDraft());
+        markModifiedCb.setEnabled(true);
         markModifiedCb.setVisible(mode == UPDATE_ENTRY_MODE);

         JPanel attPanel = new JPanel(new GridBagLayout());


Reply via email to