Load this plugin into a blank world and scroll up/down and watch the status bar. [EDIT] On affected systems it counts up very rapidly and shows the window width bouncing back and forth.
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE muclient>
<muclient>
<plugin
name="Resize_Test"
author="Fiendish"
id="aaaaaaaaaaaaaaaaaaaaaaaa"
language="Lua"
requires="4.00"
version="1.0"
>
</plugin>
<script>
<![CDATA[
for i=1,1000 do
Note('foo', i)
end
SetScroll(-2, false)
i = 0
function OnPluginWorldOutputResized()
i = i + 1
SetStatus(i, " ", GetInfo(281))
end
]]>
</script>
</muclient>