Hey Cepi, wouldnt it be better to replace the text "chats" and "contacts" of the tab buttons by icons? There are comments in main.qml which indicate someone already wanted to do so. in main.qml: ButtonRow { style: TabButtonStyle { inverted:theme.inverted } TabButton { id: chatsTabButton platformStyle: TabButtonStyle{inverted:theme.inverted} iconSource: theme.inverted ? "image://theme/icon-m-toolbar-new-chat-white" : "image://theme/icon-m-toolbar-new-chat" tab: waChats } TabButton { id: contactsTabButton platformStyle: TabButtonStyle{inverted: theme.inverted} iconSource: theme.inverted ? "image://theme/icon-m-toolbar-contact-white" : "image://theme/icon-m-toolbar-contact" tab: waContacts } } perhaps you want to add this in your branch. Greetings