Disclaimer: I am not a developer and cannot assist with compatibility issues for your version of Anki. This addon has been tested and works with my current version, 25.02 Qt6, but it may not function with other versions. If anyone wishes to adapt it for other versions, they are welcome to do so, provided they give proper credit to both me and the original addon.
Function: This addon lets you change Anki’s window opacity. It comes in handy when you want to watch something in the background while doing your reviews.
To open the dialog Press F4 or go to View > Set Window Opacity.
Update Log: 2024-11-16: - Addon release 2024-11-30: - Added support for both Qt5 and Qt6. - Fixed an issue related to the configuration file. 2024-12-01: - Fixed an issue occurring when changing profiles. - Changed some parts of the code for better readability.
Reviews (1)
👍 2024-12-01
Interesting add-on! The addHook(“profileLoaded”, setup_menu) is run when the profile is run so I think there is a problem with the menu increasing when the profile is changed, so I recommend to use a variable to run it only once or use main_window_did_init of gui_hooks. by Shige ඞ Comment from author Thanks so much for the feedback! You were spot on about the issue with addHook(“profileLoaded”, setup_menu). I ended up switching to main_window_did_init.append(setup_menu) like you suggested. I als