summaryrefslogtreecommitdiffstats
path: root/pkg/gui/controllers/list_controller.go
AgeCommit message (Collapse)Author
2023-05-25Use sentence case everywhereJesse Duffield
We have not been good at consistent casing so far. Now we use 'Sentence case' everywhere. EVERYWHERE. Also Removing 'Lc' prefix from i18n field names: the 'Lc' stood for lowercase but now that everything is in 'Sentence case' there's no need for the distinction. I've got a couple lower case things I've kept: namely, things that show up in parentheses.
2023-05-11Allow the selected line of a list view to be outside the visible areaStefan Haller
I don't see a reason why this restriction to have the selection be always visible was necessary. Removing it has two benefits: 1. Scrolling a list view doesn't change the selection. A common scenario: you look at one of the commits of your current branch; you want to see the how many'th commit this is, but the beginning of the branch is scrolled off the bottom of the commits panel. You scroll down to find the beginning of your branch, but this changes the selection and shows a different commit now - not what you want. 2. It is possible to scroll a panel that is not the current one without changing the focus to it. That's how windows in other GUIs usually behave.
2023-04-30lots of changesJesse Duffield
2023-04-30split context common from helper commonJesse Duffield
2022-08-06refactor to only have one context per viewJesse Duffield
2022-04-16add scrollbarsJesse Duffield
2022-03-19use generics to DRY up context codeJesse Duffield
2022-03-17fix click handlingJesse Duffield
2022-03-17refactor controllersJesse Duffield
2022-03-17refactor contextsJesse Duffield