Skip to content

Commit

Permalink
modified message when deleting folder
Browse files Browse the repository at this point in the history
  • Loading branch information
kontulai committed Aug 21, 2012
1 parent 6af3d37 commit 6734683
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/robotide/ui/treenodehandlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,8 @@ def OnNewResource(self, event):
NewResourceDialog(self.controller).execute()

def OnDelete(self, event):
if wx.MessageBox('Delete folder', caption='Confirm',
if wx.MessageBox('Are you sure you want to delete this folder and all of its'
'content.', caption='Confirm',
style=wx.YES_NO | wx.ICON_QUESTION) == wx.YES:

self.controller.execute(DeleteFolder())
Expand Down

0 comments on commit 6734683

Please sign in to comment.