[Geany-Devel] [Win32 - Geany Icons] Some Geany Icons have been disappeared

Colomban Wendling lists.ban at herbesfolles.org
Mon Jan 7 19:48:22 UTC 2013


Hi,

Le 07/01/2013 20:24, vadim kochan a écrit :
> Hello,
> Seems after this commit 
> Replace images embedded in the sources with proper themable icons
> https://github.com/geany/geany/commit/dabae1f94f13a85b672746aa0a177d3534048d9f
> 
> some icons were disappeared if you run Geany on Win32 Os. I found that
> wscript which was changed copies for
> win32 only icons from  "hicorol/16x16/apps" dictionary, but icons for
> "build", "save all" & few ones are located in "hicolor/16x16/actions"
> dictionary. I did a little fix, dont know if its a good solution but it
> works:
> 
> diff --git a/wscript b/wscript
> index 4825f32..92acf5b 100644
> --- a/wscript
> +++ b/wscript
> @@ -530,7 +530,7 @@ def build(bld):
>      bld.install_files(template_dest, start_dir.ant_glob('**/*'), cwd=start_dir, relative_trick=True)
>      # Icons
>      for dest in geany_icons:
> -        if is_win32 and dest != 'hicolor/16x16/apps':
> +        if is_win32 and not (dest == 'hicolor/16x16/apps' or dest == 'hicolor/16x16/actions'):
>              continue
>  
>          dest_dir = '${PREFIX}/share/icons' if is_win32 else os.path.join('${DATADIR}/icons/', dest)


Indeed you're right the check is incorrect, thanks for reporting that!
Actually, I tried to replicate a check that was here before, but I
failed to see I need to install the actions too.  Though, we should also
install the actions at the other sizes, not only at 16x16…  BTW, I'm
wondering why we installed only the 16x16 Geany icon on Windows before?
 Enrico?  Someone?

If there is no real reason, maybe we could just drop the check for win32
and install all icons no matter the system?

Regards,
Colomban



More information about the Devel mailing list