Make the maximum used width for the message text 650 pixels.
This commit is contained in:
parent
eb714b0930
commit
364c61e484
2 changed files with 27 additions and 0 deletions
|
@ -18,6 +18,7 @@ Version 1.5.10+svn:
|
|||
* Fixed a bug which sized listboxes to wrong sizes and caused visual
|
||||
glitches bug #12940
|
||||
* Fix colours in message bug #13019
|
||||
* Make the maximum used width for the message text 650 pixels
|
||||
|
||||
Version 1.5.10:
|
||||
* Campaigns:
|
||||
|
|
|
@ -460,6 +460,19 @@
|
|||
|
||||
[/column]
|
||||
|
||||
[column]
|
||||
|
||||
[spacer]
|
||||
width = "(
|
||||
if(screen_width - (142 + ({__GUI_IMAGE_WIDTH})) > 675
|
||||
, screen_width - (142 + ({__GUI_IMAGE_WIDTH}) + 675)
|
||||
, 0
|
||||
))"
|
||||
height = 75
|
||||
[/spacer]
|
||||
|
||||
[/column]
|
||||
|
||||
[/row]
|
||||
|
||||
[/grid]
|
||||
|
@ -644,6 +657,19 @@
|
|||
|
||||
[/column]
|
||||
|
||||
[column]
|
||||
|
||||
[spacer]
|
||||
width = "(
|
||||
if(screen_width - (142 + ({__GUI_IMAGE_WIDTH})) > 675
|
||||
, screen_width - (142 + ({__GUI_IMAGE_WIDTH}) + 675)
|
||||
, 0
|
||||
))"
|
||||
height = 75
|
||||
[/spacer]
|
||||
|
||||
[/column]
|
||||
|
||||
[column]
|
||||
|
||||
[spacer]
|
||||
|
|
Loading…
Add table
Reference in a new issue