View Single Post
Posts: 181 | Thanked: 106 times | Joined on May 2011 @ Bahrain
#2583
Originally Posted by smoof View Post
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
why make icons but still big tab size ? tab size can be shrinked to add 1 or 2 more icons, like settings and options ?
plus how about changing the color of bubble (messages we send are in white/gray bubble) maybe we can change that color too.
just saying.