Hello,<div>Seems after this commit </div><div><span style="color:rgb(33,63,77);font-family:Helvetica,arial,freesans,clean,sans-serif;font-size:18px;font-weight:bold;line-height:25px;background-color:rgb(230,241,246)">Replace images embedded in the sources with proper themable icons</span></div>
<div><a href="https://github.com/geany/geany/commit/dabae1f94f13a85b672746aa0a177d3534048d9f">https://github.com/geany/geany/commit/dabae1f94f13a85b672746aa0a177d3534048d9f</a></div><div><br></div><div>some icons were disappeared if you run Geany on Win32 Os. I found that wscript which was changed copies for</div>
<div>win32 only icons from  "hicorol/16x16/apps" dictionary, but icons for "build", "save all" & few ones are located in "hicolor/16x16/actions"</div><div>dictionary. I did a little fix, dont know if its a good solution but it works:</div>
<div><br></div><div><pre style="background-color:rgb(255,255,255)"><font size="4"><span style="color:rgb(0,74,67)">diff --git a/wscript b/wscript</span>
index <span style="color:rgb(0,140,0)">4825</span>f<span style="color:rgb(0,140,0)">32</span>..<span style="color:rgb(0,140,0)">92</span>acf<span style="color:rgb(0,140,0)">5</span>b <span style="color:rgb(0,140,0)">100644</span>
<span style="color:rgb(0,121,151)">--- a/wscript</span>
<span style="color:rgb(0,121,151)">+++ b/wscript</span>
@@ -<span style="color:rgb(0,140,0)">530</span>,<span style="color:rgb(0,140,0)">7</span> +<span style="color:rgb(0,140,0)">530</span>,<span style="color:rgb(0,140,0)">7</span> @@ def build(bld):
     bld.install_files(template_dest, start_dir.ant_glob('**/*'), cwd=start_dir, relative_trick=True)
     # Icons
     for dest in geany_icons:
<span style="color:rgb(15,105,255)">-        if is_win32 and dest != 'hicolor/16x16/apps':</span>
<span style="color:rgb(0,0,230)">+        if is_win32 and not (dest == 'hicolor/16x16/apps' or dest == 'hicolor/16x16/actions'):</span>
             continue
 
         dest_dir = '${PREFIX}/share/icons' if is_win<span style="color:rgb(0,140,0)">32</span> else os.path.join('${DATADIR}/icons/', dest)</font></pre></div><div><br></div>