Skip to content

Commit

Permalink
ci test
Browse files Browse the repository at this point in the history
  • Loading branch information
kaniol-lck committed May 22, 2024
1 parent 4f7a6f8 commit 5815279
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -392,8 +392,8 @@ jobs:
wget "https://github.com/kaniol-lck/aria2/releases/download/libaria2-release-1.36.0/libaria2-clang-macos-10.15.zip"
unzip *.zip
csrutil status
sudo cp -r lib/ /usr/lib/
sudo cp -r include/ /usr/include
sudo cp -r lib/ ${{ env.QT_ROOT_DIR }}/lib/
sudo cp -r include/ ${{ env.QT_ROOT_DIR }}/include/
rm -rf lib/ include/ *.zip
- name: Install dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion src/ui/framelesswrapper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ FramelessWrapper::FramelessWrapper(QWidget *parent, QWidget *widget, WindowsTitl

auto w = new QWidget(this);
auto layout = new QVBoxLayout;
layout->setMargin(0);
layout->setContentsMargins(0, 0, 0, 0);
layout->setSpacing(0);
layout->addWidget(titleBar_);
layout->addWidget(widget);
Expand Down

0 comments on commit 5815279

Please sign in to comment.