Files 22
Downloads 1,006,172
Favorites 3,651
My AddOns
View Feature Request
Make Questlog Frame Draggable
Feature #: 3079
File: DoubleWide
Date: 11-02-08 08:54 AM
By: rixs
Status: Under Review
-Make the frame draggable
-Frames will recall their location when re-opened

DoubleWide.lua

Code:
--Make Questlog Frame Draggable
QuestLogFrame:SetMovable(true)
QuestLogFrame:EnableMouse(true)
QuestLogFrame:SetScript("OnMouseDown",function()
	QuestLogFrame:StartMoving()
end)
QuestLogFrame:SetScript("OnMouseUp",function()
	QuestLogFrame:StopMovingOrSizing()
end)