Skip to content

Commit

Permalink
QEverCloud patch - Remove OAuth dialog padding
Browse files Browse the repository at this point in the history
  • Loading branch information
itsmejoeeey committed Nov 8, 2021
1 parent 74b9b98 commit 66671bf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/qevercloud/oauth.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ EvernoteOAuthWebView::EvernoteOAuthWebView(QWidget * parent) :
this, QEC_SIGNAL(EvernoteOAuthWebView,authenticationFailed));

QVBoxLayout * pLayout = new QVBoxLayout(this);
pLayout->setContentsMargins(0,0,0,0);
pLayout->addWidget(d_ptr);
setLayout(pLayout);
}
Expand Down Expand Up @@ -311,6 +312,7 @@ EvernoteOAuthDialog::EvernoteOAuthDialog(QString consumerKey, QString consumerSe
this, QEC_SLOT(EvernoteOAuthDialog,reject), Qt::QueuedConnection);

QVBoxLayout * pLayout = new QVBoxLayout(this);
pLayout->setContentsMargins(0,0,0,0);
pLayout->addWidget(d_ptr->m_pWebView);
setLayout(pLayout);

Expand Down

0 comments on commit 66671bf

Please sign in to comment.