-
Notifications
You must be signed in to change notification settings - Fork 330
[WIP] action layout editor: Port to C and make accessible via gobject-introspection. #3653
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
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -60,13 +60,19 @@ | |||||
| <property name="orientation">vertical</property> | ||||||
| <property name="spacing">4</property> | ||||||
| <child> | ||||||
| <object class="GtkScrolledWindow" id="treeview_holder"> | ||||||
| <object class="GtkScrolledWindow"> | ||||||
| <property name="visible">True</property> | ||||||
| <property name="can-focus">True</property> | ||||||
| <property name="can-focus">False</property> | ||||||
| <property name="vexpand">True</property> | ||||||
| <property name="shadow-type">in</property> | ||||||
| <child> | ||||||
| <placeholder/> | ||||||
| <object class="GtkViewport" id="treeview_holder"> | ||||||
| <property name="visible">True</property> | ||||||
| <property name="can-focus">False</property> | ||||||
| <child> | ||||||
| <placeholder/> | ||||||
| </child> | ||||||
| </object> | ||||||
| </child> | ||||||
| </object> | ||||||
| <packing> | ||||||
|
|
@@ -111,6 +117,9 @@ | |||||
| <property name="receives-default">True</property> | ||||||
| <property name="tooltip-text" translatable="yes">Remove</property> | ||||||
| <property name="image">image2</property> | ||||||
| <style> | ||||||
| <class name="destructive-action"/> | ||||||
| </style> | ||||||
| </object> | ||||||
| <packing> | ||||||
| <property name="expand">False</property> | ||||||
|
|
@@ -286,7 +295,7 @@ | |||||
| <property name="visible">True</property> | ||||||
| <property name="can-focus">False</property> | ||||||
| <property name="margin-top">4</property> | ||||||
| <property name="spacing">6</property> | ||||||
| <property name="homogeneous">True</property> | ||||||
|
||||||
| <property name="homogeneous">True</property> | |
| <property name="homogeneous">False</property> |
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -379,6 +379,7 @@ along with . If not, see <http://www.gnu.org/licenses/>. | |||
| <object class="GtkWindow" id="file_management_dialog"> | ||||
| <property name="can-focus">False</property> | ||||
| <property name="title" translatable="yes">File Management Preferences</property> | ||||
| <property name="modal">True</property> | ||||
|
||||
| <property name="modal">True</property> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The scrolled window containing the treeview has
can-focusset to False, which may prevent keyboard navigation from working properly. The scrolled window should typically be focusable to allow keyboard scrolling.