diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-11-23 19:58:23 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-11-23 19:58:23 +0800 |
commit | ebe99cfcc81d91f6ae68137cf03d5997f231c748 (patch) | |
tree | a3e0e196af98c8cf38833a35164501a4dcde07e0 /lib/egg/update-from-egg.sh | |
parent | b6a28cf3f4a3a67d2653085dee68ad513c3d8e0d (diff) | |
download | gsoc2013-epiphany-ebe99cfcc81d91f6ae68137cf03d5997f231c748.tar gsoc2013-epiphany-ebe99cfcc81d91f6ae68137cf03d5997f231c748.tar.gz gsoc2013-epiphany-ebe99cfcc81d91f6ae68137cf03d5997f231c748.tar.bz2 gsoc2013-epiphany-ebe99cfcc81d91f6ae68137cf03d5997f231c748.tar.lz gsoc2013-epiphany-ebe99cfcc81d91f6ae68137cf03d5997f231c748.tar.xz gsoc2013-epiphany-ebe99cfcc81d91f6ae68137cf03d5997f231c748.tar.zst gsoc2013-epiphany-ebe99cfcc81d91f6ae68137cf03d5997f231c748.zip |
Very basic tray icon for downloader.
2003-11-23 Marco Pesenti Gritti <marco@gnome.org>
* embed/Makefile.am:
* embed/downloader-view.c: (status_icon_activated),
(show_status_icon), (downloader_view_init),
(downloader_view_finalize), (download_dialog_delete_cb):
* lib/egg/Makefile.am:
* lib/egg/update-from-egg.sh:
Very basic tray icon for downloader.
Diffstat (limited to 'lib/egg/update-from-egg.sh')
-rwxr-xr-x | lib/egg/update-from-egg.sh | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/lib/egg/update-from-egg.sh b/lib/egg/update-from-egg.sh index 40de7352d..50690440c 100755 --- a/lib/egg/update-from-egg.sh +++ b/lib/egg/update-from-egg.sh @@ -18,18 +18,15 @@ fi for FILE in $EGGFILES; do SRCFILE=$EGGDIR/$FILE if ! test -e $SRCFILE ; then - if test -e $EGGDIR/toolbar/$FILE ; then - SRCFILE=$EGGDIR/toolbar/$FILE + if test -e $EGGDIR/tray/$FILE ; then + SRCFILE=$EGGDIR/tray/$FILE fi - if test -e $EGGDIR/menu/$FILE ; then - SRCFILE=$EGGDIR/menu/$FILE + if test -e $EGGDIR/util/$FILE ; then + SRCFILE=$EGGDIR/util/$FILE fi if test -e $EGGDIR/toolbareditor/$FILE ; then SRCFILE=$EGGDIR/toolbareditor/$FILE fi - if test -e $EGGDIR/util/$FILE ; then - SRCFILE=$EGGDIR/util/$FILE - fi if test -e $EGGDIR/treeviewutils/$FILE ; then SRCFILE=$EGGDIR/treeviewutils/$FILE fi |