[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: sizing windows
rrobare@att.net writes:
> I've been having a bit of a problem with the newest version. Many of the
> windows, especially crucial things like edit dialogs, are too large and can't
> be resized. This includes the settings window. I either can't reach the
> variables I need to change, or I can change them but then can't hit the OK
> button, either because I can't get to it or because it's on top of something
> else, so when I click it I'm actually clicking on the thing below it. Is
> there any way to change/fix/get around this? (I run windows xp.) Barring
> that, if I go back to version 2.0, will it read all the files that are in
> 3.1? Thanks for any assistance.
I don't think 2.0 would be any better than 3.1 in this respect, and
you probably will have problems.. Have you tried changing the
mswin_scale value in the Settings window? This is kind of a catch-22
I know; you can type something like this in the terminal window:
leabra++> print taMisc::mswin_scale
(c_float) mswin_scale --> 0.85
leabra++> taMisc::mswin_scale = .75;
leabra++> print taMisc::mswin_scale
(c_float) mswin_scale --> 0.75
leabra++> taMisc::SaveConfig();
this will only take effect when you restart the program. I think
smaller #'s = smaller windows. If this makes your eyes hurt, perhaps
it is time to invest in a higher res monitor? I always use 1600x1200
for this reason.
- Randy