View Single Post
08-02-13, 05:11 AM   #6
ravagernl
Proceritate Corporis
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 1,176
Originally Posted by Phanx View Post
[...]
This will preserve your old video, sound, and other system settings.
For reference, MayronUI only sets the uiScaling option for the different profiles:
Code:
if SCALE_TYPE_SET == "1920x1080" then
		ConsoleExec("useUiScale 1")
		ConsoleExec("uiscale 0.7")
	elseif SCALE_TYPE_SET == "1680x1050" then
		ConsoleExec("useUiScale 1")
		ConsoleExec("uiscale 0.7")
	elseif SCALE_TYPE_SET == "1600x900" then
		ConsoleExec("useUiScale 1")
		ConsoleExec("uiscale 0.75")
	elseif SCALE_TYPE_SET == "1440x900" then
		ConsoleExec("useUiScale 1")
		ConsoleExec("uiscale 0.75")
	elseif SCALE_TYPE_SET == "1366x768" then
		ConsoleExec("useUiScale 1")
		ConsoleExec("uiscale 0.8")
	end
Have you tried switching the video mode for wow? It might have switched to fullscreen, or maximized window (and maybe that is causing the issue).

Last edited by ravagernl : 08-02-13 at 05:15 AM.
  Reply With Quote