diff options
author | Pierre Ossman <ossman@cendio.se> | 2012-09-11 10:56:21 +0000 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2012-09-11 10:56:21 +0000 |
commit | 6a007bde173c4bf6a23a2410266a67d1d4514bf4 (patch) | |
tree | 76fb3e9f107003b5a517efb8d7e36bcb570a9c5f /vncviewer | |
parent | b2e712bc497b36b09ff324e15576b7fa1c76a1ae (diff) | |
download | tigervnc-6a007bde173c4bf6a23a2410266a67d1d4514bf4.tar.gz tigervnc-6a007bde173c4bf6a23a2410266a67d1d4514bf4.zip |
Fix incorrect path for viewer icons. Patch by Uros Vampl.
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@4998 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'vncviewer')
-rw-r--r-- | vncviewer/vncviewer.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vncviewer/vncviewer.cxx b/vncviewer/vncviewer.cxx index 79d7935e..a512213b 100644 --- a/vncviewer/vncviewer.cxx +++ b/vncviewer/vncviewer.cxx @@ -156,7 +156,7 @@ static void init_fltk() char icon_path[PATH_MAX]; bool exists; - sprintf(icon_path, "%s/icons/hicolor/%dx%d/tigervnc.png", + sprintf(icon_path, "%s/icons/hicolor/%dx%d/apps/tigervnc.png", DATA_DIR, icon_sizes[i], icon_sizes[i]); #ifndef WIN32 |