Prikaz pitanja označenih s: Prikaži sva pitanja

browser web page scroll positions at bottom of the page instead of the top

After a recent change the browser scroll always goes to the bottom of the page. Before it was always at the top of the page. I found no way in Firefox to reset this fun… (saznaj više)

After a recent change the browser scroll always goes to the bottom of the page. Before it was always at the top of the page. I found no way in Firefox to reset this function.

Pitanje od D Hall prije 1 dan

Cannot maintain Firefox as default browser on Windows 11 PC.

I have reset Firefox as default browser on my Windows 11 PC a hundred times in the past few months. Today, I could not reset it at all -- I click the default button in W… (saznaj više)

I have reset Firefox as default browser on my Windows 11 PC a hundred times in the past few months. Today, I could not reset it at all -- I click the default button in Windows 11 and as soon as I close that settings window, it disconnects. I've run out of things to try to fix this. I think it MIGHT be related to Norton 360, because I first notice this problem when I opened Norton.

Pitanje od Mark prije 4 dana

Changing the sidebar shortcut from the UI

There seems to be no possible way to change the shortcut for peeking at the tabs in the sidebar (when sidebar revamp is enabled) from the about:keyboard UI. I have so far… (saznaj više)

There seems to be no possible way to change the shortcut for peeking at the tabs in the sidebar (when sidebar revamp is enabled) from the about:keyboard UI. I have so far managed to modify the shortcut through intercepting function calls.

What I have done: 1. Read through the JS source code for about:keyboard which says the shortcut ID is `toggleSidebarKb` 2. Added hooks to intercept `RPMSendQuery` calls 3. Modified the shortcut through devtools open on the about:keyboard page with the following snippet

```js await RPMSendQuery("CustomKeys:ChangeKey", {

 "modifiers": "accel",
 "isValid": true,
 "key": "S",
 "shortcut": "Ctrl+S",
 "id": "toggleSidebarKb"

}) ```

The way I am doing it is definitely a hack. I am not sure if I am missing something. Although the shortcuts for bookmarks, history, and GenAI chat sidebar are present, there seems to be no entry to change the sidebar toggle shortcut itself. I'd love to work on this but I haven't been able to mach bootstrap on NixOS.

Thank you for any assistance :)

Pitanje od lavafroth prije 5 dana