mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Try to make clang-format happy
This commit is contained in:
parent
008f71cdbd
commit
c5edd21e6b
1 changed files with 1 additions and 1 deletions
|
@ -179,7 +179,7 @@ InputBar::insertMimeData(const QMimeData *md)
|
||||||
// NOTE(Nico): Safari, when copying the url, sends a url list. Since we only paste
|
// NOTE(Nico): Safari, when copying the url, sends a url list. Since we only paste
|
||||||
// local files, skip remote ones.
|
// local files, skip remote ones.
|
||||||
[&md] {
|
[&md] {
|
||||||
for (const auto &u : md->urls()) {
|
for (auto &&u : md->urls()) {
|
||||||
if (u.isLocalFile())
|
if (u.isLocalFile())
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue