Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ sudo apt install minotor
### With system-wide rtmdi

~~~
sudo apt install qtbase5-dev librtmidi-dev libqt5extserialport-dev
sudo apt install qt5-defaults librtmidi-dev libqt5extserialport-dev
~~~

### With embedded rtmidi, without JACK support

~~~
sudo apt install qtbase5-dev libasound2-dev libqt5extserialport-dev
sudo apt install qt5-defaults libasound2-dev libqt5extserialport-dev
~~~

## Compilation
Expand Down
2 changes: 1 addition & 1 deletion Ui/externalmasterview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ ExternalMasterView::ExternalMasterView(QWidget *parent) :

ui->setupUi(this);
this->layout()->addWidget(_uiMasterMonitor);
this->setWindowFlags(this->windowFlags() | Qt::FramelessWindowHint);
this->setWindowFlags(this->windowFlags() | Qt::Window | Qt::CustomizeWindowHint | Qt::FramelessWindowHint ); //Qt::FramelessWindowHint for disable border
Copy link
Member

@neomilium neomilium Apr 2, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Comment at the end of line is useless and commented code is prohibited to keep sources clean :-)

}

void ExternalMasterView::updateProgram()
Expand Down