Patch for GtkFileselector.e

new topic     » topic index » view thread      » older message » newer message

Thanks to Kenneth Rhodes for finding an obscure bug in GtkFileselector.e, which only seems to affect Windows. If you want to patch your copy, you'll find it around line 256:

Existing code:

 if result = MB_OK then 
    result = get(dlg,"filename") 
 end if 

This works better:

 if result = MB_OK then 
    if select_multiple then result = get(dlg,"filenames") 	 
    else result = get(dlg,"filename")  
    end if 
end if 
--note: select_multiple is FALSE by default; 
new topic     » topic index » view thread      » older message » newer message

Search



Quick Links

User menu

Not signed in.

Misc Menu