Merge PR #260: Fix webserver public folder configuration
This commit is contained in:
commit
f1abf30689
@ -50,7 +50,7 @@ private:
|
||||
class WebServerConfiguration: public ServerConfiguration
|
||||
{
|
||||
Q_OBJECT
|
||||
Q_PROPERTY(QString publicFolder READ publicFolder NOTIFY publicFolderChanged)
|
||||
Q_PROPERTY(QString publicFolder READ publicFolder WRITE setPublicFolder NOTIFY publicFolderChanged)
|
||||
public:
|
||||
explicit WebServerConfiguration(const QString &id, const QHostAddress &address = QHostAddress(), int port = 0, bool authEnabled = false, bool sslEnabled = false, QObject *parent = nullptr)
|
||||
: ServerConfiguration(id, address, port, authEnabled, sslEnabled, parent) {}
|
||||
|
||||
@ -123,7 +123,6 @@ DeviceListPageBase {
|
||||
Item {
|
||||
Layout.preferredWidth: shutterControls.implicitWidth
|
||||
Layout.preferredHeight: app.iconSize * 2
|
||||
Rectangle { anchors.fill: parent; color: "green"; opacity: .3 }
|
||||
ShutterControls {
|
||||
id: shutterControls
|
||||
height: parent.height
|
||||
|
||||
Reference in New Issue
Block a user