8000 bookmarks: Filter panadapter bookmark marks by tags by vladisslav2011 · Pull Request #1222 · gqrx-sdr/gqrx · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

bookmarks: Filter panadapter bookmark marks by tags #1222

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

Merged
merged 2 commits into from
Apr 17, 2023
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
1 change: 1 addition & 0 deletions resources/news.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

NEW: Restore AM & AM-Sync settings between sessions.
NEW: Set/get audio gain via remote control.
NEW: Only show bookmarks for active tag groups in the panadapter.
FIXED: Loading of narrow FM tau setting.
FIXED: Crash when adding or removing bookmark tags.
FIXED: Redraw bookmarks immediately after changes.
Expand Down
2 changes: 1 addition & 1 deletion src/qtgui/bookmarks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ QList<BookmarkInfo> Bookmarks::getBookmarksInRange(qint64 low, qint64 high)
while (lb != ub)
{
const BookmarkInfo& info = *lb;
//if(info.IsActive())
if(info.IsActive())
{
found.append(info);
}
Expand Down
0