Somewhere between 1.24r and pre-2pl35 the DeskTopScale parameter disappeared
from fvwm. The following patch (against pre-2pl35) reimpliments it as a
control parameter for FvwmPager itself. The specification in the .fvwm2rc
file is as so:
*FvwmPagerDeskTopScale 35
(or whatever scale factor anyone wants)
diff -cr fvwm.orig/modules/FvwmPager/FvwmPager.c fvwm/modules/FvwmPager/FvwmPager.c
*** fvwm.orig/modules/FvwmPager/FvwmPager.c Fri Jul 28 08:53:37 1995
--- fvwm/modules/FvwmPager/FvwmPager.c Thu Sep 21 18:39:01 1995
***************
*** 926,931 ****
--- 926,937 ----
{
sscanf(&tline[Clength+8],"%d",&Columns);
}
+ else if((strlen(&tline[0])>1)&&
+ (mystrncasecmp(tline,CatString3("*",MyName,"DeskTopScale"),
+ Clength+13)==0))
+ {
+ sscanf(&tline[Clength+13],"%d",&Scr.VScale);
+ }
GetConfigLine(fd,&tline);
}
return;
--
To unsubscribe from the list, send "unsubscribe fvwm" in the body of a
message to majordomo_at_hpc.uh.edu.
To report problems, send mail to fvwm-owner_at_hpc.uh.edu.
Received on Mon Sep 25 1995 - 20:10:16 BST