Skip to content

Commit

Permalink
Merge branch 'development' into MUSHclient
Browse files Browse the repository at this point in the history
  • Loading branch information
fiendish committed Oct 17, 2017
2 parents a631aab + f45d1a8 commit 740cd82
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 3 additions & 0 deletions MUSHclient/AardwolfPackageChanges.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Aardwolf Client Package Major Changes List

r1938 snapshot
- bug fix: Don't only lock miniwindow positions (when using aard layout lock) if they have a preprocessor function defined.

r1937 snapshot
- bug fix: Remove an innocuous but scary looking and unnecessary alert message in the movewindow code.

Expand Down
6 changes: 2 additions & 4 deletions MUSHclient/lua/movewindow.lua
Original file line number Diff line number Diff line change
Expand Up @@ -164,10 +164,8 @@ local function make_dragmove_handler (mwi)
local win = mwi.win

-- see if other action wanted
if mwi.preprocess.dragmove then
if (GetPluginVariable("c293f9e7f04dde889f65cb90", "lock_down_miniwindows") == "1") or mwi.preprocess.dragmove (flags, hotspot_id, win) then
return
end -- if handled already
if (GetPluginVariable("c293f9e7f04dde889f65cb90", "lock_down_miniwindows") == "1") or (mwi.preprocess.dragmove and mwi.preprocess.dragmove(flags, hotspot_id, win)) then
return
end -- if handler

-- find where it is now
Expand Down

0 comments on commit 740cd82

Please sign in to comment.