Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove invalid url #2519

Merged
merged 1 commit into from
Dec 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions src/apps/dde-file-manager/pkexec/dde-file-manager-pkexec
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@
#
# SPDX-License-Identifier: GPL-3.0-or-later

# Reference:
# https://wikidev.uniontech.com/%E8%BF%9B%E7%A8%8B%E8%BF%90%E8%A1%8C%E6%9D%83%E9%99%90%E4%B8%8E%E6%8F%90%E6%9D%83
function get_scale_factor() {
user_name=$(logname)
scaling=$(sudo -u "$user_name" dbus-launch gsettings get com.deepin.xsettings scale-factor)
Expand Down
2 changes: 1 addition & 1 deletion src/dfm-base/file/local/localfilehandler_p.h
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ class LocalFileHandlerPrivate
LocalFileHandler *q { nullptr };
DFMIOError lastError;
GlobalEventType lastEvent = GlobalEventType::kUnknowType;
QList<QUrl> invalidPath; //BUG:https://pms.uniontech.com/bug-view-259909.html,记录无效链接路径
QList<QUrl> invalidPath; //BUG:259909,记录无效链接路径
};

}
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/common/dfmplugin-emblem/utils/emblemhelper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ QList<QIcon> EmblemHelper::systemEmblems(const FileInfoPointer &info) const
if (!info)
return {};

// feat: https://pms.uniontech.com/story-view-31477.html
// feat: story 31477
// For desktop files hide all system emblem icons
if (FileUtils::isDesktopFileInfo(info))
return {};
Expand Down
Loading