AxelChat icon indicating copy to clipboard operation
AxelChat copied to clipboard

Enhancement: Option to change how text enters window

Open MCas86 opened this issue 1 year ago • 2 comments

Enhancement: Setting option to change how text enters window

  • left
  • right
  • bottom
  • just appear

the animation of it flying in from the right is distracting to some

MCas86 avatar Mar 12 '24 15:03 MCas86

Please yes! And for Widget too.

Aeon1704 avatar Jan 27 '25 05:01 Aeon1704

Good idea, I'll try to do it after the advanced customization of appearance is ready

3dproger avatar Feb 24 '25 05:02 3dproger

Bumping this as I have a similar issue with the browser widget- New messages start at the top when I prefer new messages to show at the bottom.

Image

As far as I'm aware there isn't an option to show new messages at the bottom of the widget, and the workaround is to spam messages until new messages appear at the bottom. It would be nice to have the option for messages to start at the bottom and scroll up.

synthodome avatar Nov 21 '25 00:11 synthodome

Bumping this as I have a similar issue with the browser widget- New messages start at the top when I prefer new messages to show at the bottom.

There is a solution to his. I didnt try to change the order of how message appears(i.e. timestamp nickname etc) but this:

.messagesListView{
width: 100%;
position: fixed;
top: 0;
  display:flex;
  flex-direction: column-reverse;
}

will help your messages to appear at top. While this:

.messagesListView{
width: 100%;
position: fixed;
bottom: 0;
  display:flex;
  flex-direction: column;
}

should help new messages to appear at bottom. You need to right click on your OBS Widget Element - Properties. In opened window should be CSS field. Add any of those codes ( do not replace text which already there), and it should take effect. As alternative to AxelChat lack of such settings, you can use Window-Preview of your OBS Widget as a stylized multi chat window.

Aeon1704 avatar Nov 21 '25 02:11 Aeon1704