Skip to content

Commit

Permalink
fix: missing default windowRadius
Browse files Browse the repository at this point in the history
as title.

pms: BUG-291123
  • Loading branch information
18202781743 committed Dec 13, 2024
1 parent 4ff3a64 commit df15974
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/plugins/dplatforminterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,12 @@ int DPlatformInterface::dndDragThreshold() const

int DPlatformInterface::windowRadius() const
{
return {};
return -1;
}

int DPlatformInterface::windowRadius(int) const
int DPlatformInterface::windowRadius(int defaultValue) const
{
return {};
return defaultValue;
}

QByteArray DPlatformInterface::themeName() const
Expand Down

0 comments on commit df15974

Please sign in to comment.