Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
rodlie committed Aug 17, 2024
1 parent e16534a commit 94783cc
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion src/app/GUI/mainwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2296,7 +2296,6 @@ void MainWindow::openRendererWindow()
void MainWindow::cmdAddAction(QAction *act)
{
if (!act || eSettings::instance().fCommandPalette.contains(act)) { return; }
qDebug() << "command palette add action" << act->text() << act->toolTip();
eSettings::sInstance->fCommandPalette.append(act);
}

Expand Down
4 changes: 2 additions & 2 deletions src/cmake/friction-meta.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@
#

set(FRICTION_NAME "friction")
set(FRICTION_NAME_GENERIC "Motion Graphics")
set(FRICTION_NAME_GENERIC "Friction Graphics")
set(FRICTION_DISPLAY_NAME "Friction")
set(PROJECT_COPYRIGHT "Friction contributors")
set(PROJECT_IDENTIFIER "graphics.friction")
set(PROJECT_SUMMARY "Motion graphics and animation")
set(PROJECT_DESCRIPTION "Powerful and versatile motion graphics and animation application that allows you to create stunning vector and raster animations for web and video platforms with ease")
set(PROJECT_DESCRIPTION "Powerful and versatile motion graphics and animation application that allows you to create vector and raster animations for web and video platforms with ease")
set(PROJECT_LICENSE "GPLv3+")
set(PROJECT_HOMEPAGE_URL "https://friction.graphics")
set(PROJECT_FREEDESKTOP "${PROJECT_IDENTIFIER}.${FRICTION_DISPLAY_NAME}")
Expand Down
2 changes: 0 additions & 2 deletions src/core/themesupport.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,10 +250,8 @@ const QSize ThemeSupport::getIconSize(const int size)
QSize requestedSize(size, size);
const auto iconSizes = getAvailableIconSizes();
bool hasIconSize = iconSizes.contains(requestedSize);
qDebug() << "requested icon size" << size << hasIconSize << "available" << iconSizes;
if (hasIconSize) { return requestedSize; }
const auto foundIconSize = findClosestIconSize(size);
qDebug() << "found icon size replacement" << foundIconSize;
return foundIconSize;
}

Expand Down

0 comments on commit 94783cc

Please sign in to comment.