On Mon, Nov 05, 2001 at 10:28:26AM -0700, toshi isogai wrote:
>
> I just compiled and started using 2.4.3. Feedback window during move
> or resize is about 2 pixel wide. (It is trying to show some numbers in
> that narrow space.)
>
> Would anyone tell me how to correct this?
Are there any error messages on the console about fonts? Does it
heal if you issue "DefaultFont <any font you like>" via
FvwmConsole or FvwmCommand after fvwm has started? Can you add
these lines into the resize_geometry_window() function, please?
I'd like to know if the geometry window is resized to an incorrect
size or it it is never resized at all.
if (w != sizew_g.width || h != sizew_g.height)
{
XResizeWindow(dpy, Scr.SizeWindow, w, h);
sizew_g.width = w;
sizew_g.height = h;
--> fprintf(stderr, "rgw: size changed\n");
}
--> fprintf(stderr, "rgw: gw size: %dx%d\n", w, h);
if (cset >= 0)
{
SetWindowBackground(
...
(new lines marked with -->)
Bye
Dominik ^_^ ^_^
--
Dominik Vogt, dominik.vogt_at_gmx.de
Reply-To: dominik.vogt_at_gmx.de
--
Visit the official FVWM web page at <URL: http://www.fvwm.org/>.
To unsubscribe from the list, send "unsubscribe fvwm" in the body of a
message to majordomo_at_fvwm.org.
To report problems, send mail to fvwm-owner_at_fvwm.org.
Received on Sat Nov 10 2001 - 15:25:13 GMT