Converted these images to PNG, saving a handful of bytes per image
[adiumx.git] / ASUnitTests / CantSetWindowMinimizable.applescript
bloba1385856f67efde61a89ca82f9220d3fe3a11fbe
1 global HandyAdiumScripts
3 on run
4 tell application "Adium"
5 set m to (get minimizable of window 1)
6 try
7 set minimizable of window 1 to false
8 --should never get here
9 set minimizable of window 1 to m --restore
10 error
11 on error number num
12 if num is -2700 then error
13 end try
14 end tell
15 end run