mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-16 17:27:38 +00:00
Merge pull request 'Windows: no seperators between statusbar widgets' (#48) from tobtoht/feather:windows_status_sep into master
Reviewed-on: https://git.wownero.com/feather/feather/pulls/48
This commit is contained in:
commit
48fb92dc60
1 changed files with 5 additions and 0 deletions
|
@ -710,6 +710,11 @@ void MainWindow::onCreateTransactionError(const QString &message) {
|
|||
}
|
||||
|
||||
void MainWindow::create_status_bar() {
|
||||
#if defined(Q_OS_WIN)
|
||||
// No seperators between statusbar widgets
|
||||
this->statusBar()->setStyleSheet("QStatusBar::item {border: None;}");
|
||||
#endif
|
||||
|
||||
this->statusBar()->setFixedHeight(30);
|
||||
|
||||
m_statusLabelStatus = new QLabel("Idle", this);
|
||||
|
|
Loading…
Reference in a new issue