Show
Ignore:
Timestamp:
01-04-2008 18:25:30 (5 years ago)
Author:
jppavao
Message:

Sending an empty string in the XML input sheet of the XML console is no longer allowed. Fixes #213.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/lilypad/Sources/LPXmlConsoleController.m

    r243 r254  
    178178         
    179179        [m_invalidXMLLabel setHidden:YES]; 
     180        [m_inputSendButton setEnabled:NO]; 
    180181         
    181182        // Show the input sheet. 
     
    372373{ 
    373374        [m_invalidXMLLabel setHidden:YES]; 
     375        [m_inputSendButton setEnabled:([[m_inputTextView string] length] > 0)]; 
    374376} 
    375377