Thread Tools Display Modes
03-30-10, 08:28 AM   #1
seawolf
A Murloc Raider
Join Date: Mar 2010
Posts: 5
Reset font size

Is it possible to reset the font size to the default size. I have changed it in the tab above the chat frame. But the smallest size there is bigger than when i installed nui. It only goes down to 12 in the tab. What can i do?
 
03-30-10, 08:46 AM   #2
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
nUI doesn't alter what font sizes are available in the chat frame configuration panel and, in fact, I believe nUI's default font size is actually smaller than 12pts.

Anyway, if you were able to set a smaller size prior to installing nUI, it was likely the result of another chat mod. nUI is compatible with both Chatter and Prat, so you may want to look at using one of those.
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
03-30-10, 09:02 AM   #3
seawolf
A Murloc Raider
Join Date: Mar 2010
Posts: 5
no my problem is that i changed it to 12, but it is too big. i want it back to nui's default size (10 i think).
 
03-30-10, 09:38 AM   #4
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,929
Well, as Scott said there isn't anywhere in the nUI files that I could see a specific font being set up. However, I found the following in the chat-cache.txt file for each user :

WINDOW 1
NAME General
SIZE 16
COLOR 0 0 0 0
LOCKED 1
UNINTERACTABLE 0
DOCKED 1
SHOWN 1

This might override nUI's initial setting of 11 set up in the layout files. You could try renaming the chat-cache.txt file and see if it then uses the nUI default font size.

I personally use Prat for the full control but outside of that I think that might be all you can do as nUI doesn't save or use anything beyond loading up the initial defaults.

If you're au fait with macro scripts you might want to see if this helps you in game. This is the blizz code for getting the font settings and may help you to adjust things without an addon.

Code:
local name, fontSize, r, g, b, a, shown, locked, docked, uninteractable = GetChatWindowInfo(<CHATFRAMENAME>:GetID());
if ( fontSize > 0 ) then
  fontSize = <NEWFONTSIZE>;   -- Change if you want here
  local fontFile, fontHeight, fontFlags = <CHATFRAMENAME>:GetFont();
  fontFile = <NEWFONTFILE>;  -- Change if you want here
  <CHATFRAMENAME>:SetFont(fontFile, fontSize, fontFlags);
end
Wowwiki Links :
http://www.wowwiki.com/API_GetChatWindowInfo
http://www.wowwiki.com/API_Font_GetFont
http://www.wowwiki.com/API_Font_SetFont
http://www.wowwiki.com/World_of_Warc...ndow_Functions

It looks like the SetFont setting may need a reloadui which means a script macro may not be the solution unless it saves the change before the reload.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818

Last edited by Xrystal : 03-30-10 at 10:15 AM.
 
03-30-10, 09:54 AM   #5
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
Originally Posted by Xrystal View Post
If you're au fait with macro scripts
Damn Europeans... always getting all huffy with those fancy phrases they steal from each others cultures!

~evil grin~

__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
03-30-10, 10:06 AM   #6
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,929
rofl.

Yeah and we spell words wrong .. I mean centre/colour ??? like that makes more sense than center/color rofl. Thankfully I'm a programmer so those are easy for me to remember rofl.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
03-30-10, 10:12 AM   #7
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
Not to mention that whole Z versus S thing.

__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
03-30-10, 10:30 AM   #8
Petrah
A Pyroguard Emberseer
 
Petrah's Avatar
AddOn Author - Click to view addons
Join Date: Jan 2008
Posts: 2,988
Originally Posted by spiel2001 View Post
nUI doesn't alter what font sizes are available in the chat frame configuration panel and, in fact, I believe nUI's default font size is actually smaller than 12pts.

Anyway, if you were able to set a smaller size prior to installing nUI, it was likely the result of another chat mod. nUI is compatible with both Chatter and Prat, so you may want to look at using one of those.
There must be a bug somewhere (maybe in wow itself?). I can't remember which one of my posts it was where I was testing for another bug, but I did mention that the font in the chatbox (with only nUI installed, deleted cache, renamed/moved interface/wtf folders) was suddenly huge beyond anything I've seen. I can't remember if refreshing fixed it or not.
__________________
♪~ ( ) I My Sonos!
AddOn Authors: If your addon spams the chat box with "Addon v8.3.4.5.3 now loaded!", please add an option to disable it!
 
03-31-10, 01:58 AM   #9
seawolf
A Murloc Raider
Join Date: Mar 2010
Posts: 5
well prob solved with chatter. But still think it is weird that there is no way to reset nui to the way it was when i installed it
 
03-31-10, 04:18 AM   #10
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
Well... the way it works at present is that nUI sets up defaults when you first install it. After that, it assumes that if you change the settings it's because you want them that way, so it doesn't try to set it back to the defaults. Admittedly, nUI's chat integration is anemic at best... but that's the way it is at present. I have long intended to do something about chat like a WIM style functionality, I just need the time to work on it.
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
03-31-10, 05:23 AM   #11
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,929
Rofl, I was surprised there wasn't at least a way to reset it either. There's been many a time when I have tried a font setting and realised it was too big, too small etc. Hence prat to the rescue. The font setting side of the addon is all I am using it for At least conciously.

Although the GUI plugin may, come to think of it, allow people to reset it. I've never used it myself so not sure what else is there font wise.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
04-01-10, 04:00 PM   #12
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,929
Rofl, and now we have a post with the opposite problem.

Now how on earth can nUI both overwrite and not overwrite the font settings

http://www.wowinterface.com/forums/s...703#post183703
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
04-02-10, 09:22 AM   #13
Warpig44
A Fallenroot Satyr
 
Warpig44's Avatar
Join Date: Dec 2008
Posts: 27
May I horn in on this thread?

I set the font to 14 and each time I log out / back in it is significantly smaller. I am not using any chat mods so I am a little confused as to what might be causing this.

Any help would be appreciated.
 
04-02-10, 09:36 AM   #14
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,929
Warpig, can you see if you can find that chat-cache.txt file I mentioned earlier in the thread. It should contain the settings you make to the chat frames in there including the size. Would be interesting to see if the blizzard chat frame is not updating its chat cache information after nUI sets its default up.

EG.

WoW loads up - sets main information
nUI loads up - sets its defaults
>>> Now does WoW recheck its chat information in an onupdate routine ?

If the last stage never happens that would explain why it is not taking your changes into account.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
04-02-10, 10:12 AM   #15
Warpig44
A Fallenroot Satyr
 
Warpig44's Avatar
Join Date: Dec 2008
Posts: 27
Ok I found the file, do you want me to paste it's contents here?

I will PM it to you, WTH.


Originally Posted by Xrystal View Post
Warpig, can you see if you can find that chat-cache.txt file I mentioned earlier in the thread. It should contain the settings you make to the chat frames in there including the size. Would be interesting to see if the blizzard chat frame is not updating its chat cache information after nUI sets its default up.

EG.

WoW loads up - sets main information
nUI loads up - sets its defaults
>>> Now does WoW recheck its chat information in an onupdate routine ?

If the last stage never happens that would explain why it is not taking your changes into account.

Last edited by Warpig44 : 04-02-10 at 10:15 AM.
 
04-02-10, 10:34 AM   #16
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,929
Okay, I can see from that file that you have either used my guild chat plugin or have a special chat tab set up for guild chat. It's set for 14 point font. The Combat Log is set up for 12 point font and the general is set up for 14 point font as well.

Now I take it that you are talking about the general chat frame ? Or are you talking about the guild chat frame or the combat log frame ? Or all of them ?

Do they all seem to reset to the small size ? Or just the general or combat or guild or a combination. let me know which chat windows you are changing and which ones are staying with those changes and which ones are being reset. That might help confirm some things for me.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
04-02-10, 10:43 AM   #17
Warpig44
A Fallenroot Satyr
 
Warpig44's Avatar
Join Date: Dec 2008
Posts: 27
The info I PM'd you was copied as I was in game and after I had reset the font to 14, all windows general, guild, combat change to 12 point or smaller whatever the default is.

I do have your guild chat mod installed yes and have not modified chat in any way other than that.

Originally Posted by Xrystal View Post
Okay, I can see from that file that you have either used my guild chat plugin or have a special chat tab set up for guild chat. It's set for 14 point font. The Combat Log is set up for 12 point font and the general is set up for 14 point font as well.

Now I take it that you are talking about the general chat frame ? Or are you talking about the guild chat frame or the combat log frame ? Or all of them ?

Do they all seem to reset to the small size ? Or just the general or combat or guild or a combination. let me know which chat windows you are changing and which ones are staying with those changes and which ones are being reset. That might help confirm some things for me.

Last edited by Warpig44 : 04-02-10 at 10:47 AM.
 
04-02-10, 10:46 AM   #18
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,929
Okay, I'll be logging into game shortly so will try it all out without Prat installed and see what happens when I change stuff.
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818
 
04-02-10, 10:51 AM   #19
Warpig44
A Fallenroot Satyr
 
Warpig44's Avatar
Join Date: Dec 2008
Posts: 27
Thank you very much.
 
04-02-10, 11:05 AM   #20
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,929
Okay... lets see...

With prat I had set up my frames as follows :

WINDOW 1
NAME General
SIZE 16

WINDOW 2
NAME Combat Log
SIZE 16

WINDOW 3
SIZE 16
-- Hmm, this is my GuildChat Addon Frame .. guess I need to find a way to name it huh ?

WINDOW 4
SIZE 16
-- And this is my WhisperChat Addon Frame .. same again here I assume rofl

WINDOW 5
SIZE 16
-- And this is my Chat Addon Frame .. Another one to change

Anyway, turned off Prat and logged in .. despite the frames themselves reporting size 16 fonts the display is clearly alot smaller .. image 1 attached ..

Hmm, went to change the font to 16 and no change .. set it to 12 and it went smaller .. so the screenshot below is at size 16 .. changing to the various sizes below ...

Window 1 - 18
Window 2 - 12
Window 3 - 14
Window 4 - 16
Window 5 - 16

chat-cache.txt file now contains the following:
WINDOW 1
NAME General
SIZE 18

WINDOW 2
NAME Combat Log
SIZE 12

WINDOW 3
SIZE 14

WINDOW 4
SIZE 16

WINDOW 5
SIZE 16

As expected. However, I can tell you that I had to toggle between 16 and 18 for a few with the font being used as the sizes are very similar.

Logged back in and screen 2 is the result. Chat Window settings as I had set them and not reset to another size.

Is it possible that the sizes you are setting are so similar to the last size that you are not noticing the size difference ? Try going from 12 to 16 or 18 and you should see a difference. Then log out to desktop and log back in.

Okay, just logged to the character selection screen in case that was the difference but no go .. changed combat log from the tiny 12 to the large 18 and it stayed when I logged back in.

Is there anything else you are doing different from me ?
Attached Thumbnails
Click image for larger version

Name:	WoWScrnShot_040210_180439.jpg
Views:	611
Size:	253.5 KB
ID:	4127  Click image for larger version

Name:	WoWScrnShot_040210_181311.jpg
Views:	594
Size:	274.1 KB
ID:	4128  
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818

Last edited by Xrystal : 04-02-10 at 11:17 AM.
 
 

WoWInterface » Featured Projects » nUI, MozzFullWorldMap and PartySpotter » Support » nUI: Technical Support » Reset font size


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off