mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-02-01 11:39:26 +00:00
Allow smallbuttons to use emojis. Insert text in text area in chats. Ensure to send plain text message. Use custom text font for text edit. Emoji picker and display it aside of files preview with a splitter. Fix file preview layout in replies. Change double click to simple click on avatar for copying address into the smartsearchbar. Add an option to change emojis font. Update chat actions colors.
15 lines
445 B
QML
15 lines
445 B
QML
pragma Singleton
|
|
import QtQml 2.2
|
|
|
|
import Units 1.0
|
|
import ColorsList 1.0
|
|
|
|
// =============================================================================
|
|
|
|
QtObject {
|
|
property string sectionName : 'EmojiPicker'
|
|
property var backgroundColorModel: ColorsList.add(sectionName+'_bg', 'telkeypad_fg')
|
|
property var borderColorModel: ColorsList.add(sectionName+'_border', 'telkeypad_bg')
|
|
property int emojiSize: 26
|
|
property int emojiMargin: 10
|
|
}
|