logerrit | 4 ++++ vcl/unx/gtk3/gtkinst.cxx | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-)
New commits: commit fcbb911c70056a54763e6352d75630ba08e377d1 Author: Caolán McNamara <[email protected]> AuthorDate: Thu Oct 2 11:59:48 2025 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Thu Oct 2 18:57:08 2025 +0200 add example of %notify=NONE and %notify=OWNER Change-Id: Icda847105524c9021b3105c85cc1f4d949c2d1c3 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191777 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/logerrit b/logerrit index cc6699027d7b..54cc13978aae 100755 --- a/logerrit +++ b/logerrit @@ -54,6 +54,10 @@ case "$1" in echo " submit [BRANCH] submit your change for review" echo " submit [BRANCH]%private submit your change as private" echo " submit [BRANCH]%wip submit your change as work-in-progress" + echo " submit [BRANCH]%notify=NONE" + echo " No email notification will be sent to anyone" + echo " submit [BRANCH]%notify=OWNER" + echo " Only the change owner is notified" echo " nextchange [BRANCH] reset branch to the remote to start with the next change" echo " testfeature [BRANCH] [CHANGEID]" echo " trigger a test of a feature branch on gerrit" commit ccebcef3097757fe10ca68db9ae6c8baad8d0d62 Author: Caolán McNamara <[email protected]> AuthorDate: Thu Oct 2 09:39:32 2025 +0100 Commit: Caolán McNamara <[email protected]> CommitDate: Thu Oct 2 18:57:00 2025 +0200 fix: Theme parsing error: Not using units is deprecated. Assuming 'px' Change-Id: I33d47ea088ffc870d61db383ae93409bf272ee75 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/191776 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]> diff --git a/vcl/unx/gtk3/gtkinst.cxx b/vcl/unx/gtk3/gtkinst.cxx index abc230dd111a..a3a7abba3760 100644 --- a/vcl/unx/gtk3/gtkinst.cxx +++ b/vcl/unx/gtk3/gtkinst.cxx @@ -9391,8 +9391,8 @@ public: { pNotebookContext = gtk_widget_get_style_context(GTK_WIDGET(pNotebook)); GtkCssProvider* pProvider = gtk_css_provider_new(); - static const gchar data[] = "notebook > header > tabs > tab { padding-top: 1; " - "padding-bottom: 1; margin-top: 0; margin-bottom: 0;}"; + static const gchar data[] = "notebook > header > tabs > tab { padding-top: 1px; " + "padding-bottom: 1px; margin-top: 0; margin-bottom: 0;}"; css_provider_load_from_data(pProvider, data, -1); gtk_style_context_add_provider(pNotebookContext, GTK_STYLE_PROVIDER(pProvider), GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
