Set better proportions between the send and receive views of the ChatWindow. Made the window split more thin.

This commit is contained in:
barrett 2013-01-04 17:37:53 +00:00
parent a56a343cd0
commit 53c5c02d66

View File

@ -83,9 +83,9 @@ ChatWindow::ChatWindow(ContactLinker* cl)
.Add(fPersonalMessage) .Add(fPersonalMessage)
.Add(fAvatar) .Add(fAvatar)
.End() .End()
.AddSplit(B_VERTICAL) .AddSplit(B_VERTICAL, 2.0f)
.Add(scrollViewReceive, 2) .Add(scrollViewReceive, 3)
.Add(scrollViewSend, 3) .Add(scrollViewSend, 2)
.End() .End()
.Add(fStatus, 4) .Add(fStatus, 4)
.SetInsets(5, 5, 5, 5); .SetInsets(5, 5, 5, 5);