mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Make the height of the bottom bar smaller
This commit is contained in:
parent
18a98a7c1d
commit
758be07a5a
2 changed files with 4 additions and 4 deletions
|
@ -66,7 +66,7 @@ constexpr int minWidth = 950;
|
|||
} // namespace window
|
||||
|
||||
namespace textInput {
|
||||
constexpr int height = 50;
|
||||
constexpr int height = 44;
|
||||
}
|
||||
|
||||
namespace sidebarActions {
|
||||
|
|
|
@ -43,8 +43,8 @@
|
|||
|
||||
static constexpr size_t INPUT_HISTORY_SIZE = 127;
|
||||
static constexpr int MAX_TEXTINPUT_HEIGHT = 120;
|
||||
static constexpr int InputHeight = 26;
|
||||
static constexpr int ButtonHeight = 24;
|
||||
static constexpr int InputHeight = 24;
|
||||
static constexpr int ButtonHeight = 22;
|
||||
|
||||
FilteredTextEdit::FilteredTextEdit(QWidget *parent)
|
||||
: QTextEdit{parent}
|
||||
|
@ -453,7 +453,7 @@ TextInputWidget::TextInputWidget(QWidget *parent)
|
|||
|
||||
topLayout_ = new QHBoxLayout();
|
||||
topLayout_->setSpacing(0);
|
||||
topLayout_->setContentsMargins(15, 0, 15, 0);
|
||||
topLayout_->setContentsMargins(13, 0, 13, 0);
|
||||
|
||||
QIcon send_file_icon;
|
||||
send_file_icon.addFile(":/icons/icons/ui/paper-clip-outline.png");
|
||||
|
|
Loading…
Reference in a new issue