1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00

Lower-case the group name, not the entire image file name. This makes

"Display layout as image" work.
This commit is contained in:
Dag-Erling Smørgrav 2005-02-06 11:55:12 +00:00
parent dceb9848b7
commit dba16d0462
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=128133
2 changed files with 16 additions and 1 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= xfce4-xkb-plugin
PORTVERSION= 0.3.2
PORTREVISION= 2
PORTREVISION= 3
CATEGORIES= deskutils xfce
MASTER_SITES= http://download.berlios.de/xfce-goodies/
DIST_SUBDIR= xfce4

View File

@ -0,0 +1,15 @@
--- panel-plugin/xkb.c.orig Wed Jun 30 11:46:49 2004
+++ panel-plugin/xkb.c Sun Feb 6 12:51:04 2005
@@ -264,12 +264,12 @@
char *group;
group = strdup(get_symbol_name_by_res_no(current_group_xkb_no));
+ to_lower(group);
strcpy(filename, FLAGSDIR);
strcat(filename, "/");
strcat(filename, group);
strcat(filename, ".png");
- to_lower(filename);
free(group);