mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 03:00:46 +03:00
commit
049278bc35
5 changed files with 6 additions and 3 deletions
1
.github/ISSUE_TEMPLATE/bug_report.md
vendored
1
.github/ISSUE_TEMPLATE/bug_report.md
vendored
|
@ -26,6 +26,7 @@ If applicable, add screenshots to help explain your problem.
|
|||
### System:
|
||||
|
||||
- Nheko version: <!-- Get the version from the settings menu (bottom left corner) -->
|
||||
- Profile used: <!-- If you are not using the default profile, mention it here -->
|
||||
- Installation method: <!-- AppImage, some repository, local build etc -->
|
||||
- Operating System:
|
||||
- Qt version: <!-- If you compiled it yourself -->
|
||||
|
|
|
@ -261,7 +261,7 @@ set(SRC_FILES
|
|||
|
||||
# Emoji
|
||||
src/emoji/EmojiModel.cpp
|
||||
src/emoji/Provider_new.cpp
|
||||
src/emoji/Provider.cpp
|
||||
|
||||
|
||||
# Timeline
|
||||
|
|
|
@ -57,9 +57,9 @@ Popup {
|
|||
completer = undefined;
|
||||
}
|
||||
}
|
||||
padding: 0
|
||||
padding: 1
|
||||
onAboutToShow: currentIndex = -1
|
||||
height: listView.contentHeight
|
||||
height: listView.contentHeight + 2 // + 2 for the padding on top and bottom
|
||||
|
||||
Connections {
|
||||
onTimelineChanged: completer = null
|
||||
|
@ -183,6 +183,7 @@ Popup {
|
|||
color: colors.base
|
||||
implicitHeight: popup.contentHeight
|
||||
implicitWidth: popup.contentWidth
|
||||
border.color: colors.mid
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -14,6 +14,7 @@ ApplicationWindow {
|
|||
width: 420
|
||||
minimumHeight: 420
|
||||
palette: colors
|
||||
color: colors.window
|
||||
|
||||
ColumnLayout {
|
||||
id: contentL
|
||||
|
|
Loading…
Reference in a new issue