aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/python/pythonsettings.cpp
diff options
context:
space:
mode:
authorhjk <[email protected]>2025-12-12 08:33:08 +0100
committerhjk <[email protected]>2025-12-16 07:38:45 +0000
commite5c1dccbdfc8e0ce16a30919afd8d321a8fa3d23 (patch)
tree6b352d25e85107c3876b5c7b0263c9d188af00af /src/plugins/python/pythonsettings.cpp
parent9c0967386069ce7aa1d322d5f7cbb084c8e6ca25 (diff)
Python: Switch row/column order in settings
The details kind of belong to the list only. Change-Id: I71acb1c0477fd6152662700af586cda2bf4bc03e Reviewed-by: David Schulz <[email protected]>
Diffstat (limited to 'src/plugins/python/pythonsettings.cpp')
-rw-r--r--src/plugins/python/pythonsettings.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/src/plugins/python/pythonsettings.cpp b/src/plugins/python/pythonsettings.cpp
index 9269d21b64a..6c257aa2c90 100644
--- a/src/plugins/python/pythonsettings.cpp
+++ b/src/plugins/python/pythonsettings.cpp
@@ -241,19 +241,19 @@ InterpreterOptionsWidget::InterpreterOptionsWidget()
m_cleanButton.setToolTip(Tr::tr("Remove all Python interpreters without a valid executable."));
using namespace Layouting;
-
- Column buttons {
- m_addButton,
- m_deleteButton,
- m_makeDefaultButton,
- m_generateKitButton,
- m_cleanButton,
- st
- };
-
- Column {
- Row { m_view, buttons },
- m_detailsWidget
+ Row {
+ Column {
+ m_view,
+ m_detailsWidget
+ },
+ Column {
+ m_addButton,
+ m_deleteButton,
+ m_makeDefaultButton,
+ m_generateKitButton,
+ m_cleanButton,
+ st
+ }
}.attachTo(this);
updateCleanButton();