Skip to content

Commit 0e3c400

Browse files
committed
v4.9.1
1 parent 7835235 commit 0e3c400

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

LeUI/LeUI.tp2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BACKUP ~LeUI/backup~
22
AUTHOR ~lefreut~
3-
VERSION ~4.9~
3+
VERSION ~4.9.1~
44
LANGUAGE
55
~English~ ~en_US~ ~LeUI/lang/en_US/setup.tra~
66

LeUI/copy/UI.menu

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14199,7 +14199,13 @@ function dragMessagesY(newY)
1419914199

1420014200
--lower bound on height, sliced rects can't get too small and we don't want to make the message box invisible.
1420114201
--also don't go too high because it looks bad.
14202-
if hNew > 50 and hNew < 450 then
14202+
if hNew < 50 then
14203+
newY = h - 50
14204+
elseif hNew > 450 then
14205+
newY = h - 450
14206+
end
14207+
14208+
if newY ~= 0 then
1420314209
adjustItemGroup({"messagesHandleY"},0,newY,0,0)
1420414210
adjustItemGroup({"messagesRect","worldMessageBox"},0,newY,0,-newY)
1420514211
end

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ The goal of this mod is to provide an unified and improved UI for Baldur's Gate
44

55
## Compatibility
66

7-
For EE version 2.6, use the v4.9 version of this mod.
7+
For EE version 2.6, use the v4.9.1 version of this mod.
88

99
For EE version 2.5, use the v4.3.2 version of this mod.
1010

0 commit comments

Comments
 (0)