We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe84f78 commit c926716Copy full SHA for c926716
bpython/gtk_.py
@@ -275,7 +275,8 @@ def confirm(self, q):
275
return response
276
277
def file_prompt(self, s):
278
- chooser = gtk.FileChooserDialog(action=gtk.FILE_CHOOSER_ACTION_SAVE,
+ chooser = gtk.FileChooserDialog(title="File to save to",
279
+ action=gtk.FILE_CHOOSER_ACTION_SAVE,
280
buttons=(gtk.STOCK_CANCEL,gtk.RESPONSE_CANCEL,gtk.STOCK_OPEN,gtk.RESPONSE_OK))
281
chooser.set_default_response(gtk.RESPONSE_OK)
282
chooser.set_current_name('test.py')
0 commit comments