Skip to content

Commit 140d203

Browse files
authored
Merge pull request #89 from libyui/anaselli-patch-1
Better check on init
2 parents 2876e58 + 9566457 commit 140d203

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

Diff for: VERSION.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
SET( VERSION_MAJOR "2" )
22
SET( VERSION_MINOR "52" )
3-
SET( VERSION_PATCH "4" )
3+
SET( VERSION_PATCH "5" )
44
SET( VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}${VERSION_SHA1}" )
55

Diff for: package/libyui-gtk.changes

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
-------------------------------------------------------------------
2+
Sat Mar 16 16:12:25 CET 2024 - [email protected]
3+
- Fixed dnfdragora bug 216 "The app is squashed when is opened"
4+
related to libyui-gtk only
5+
- 2.51.5
6+
17
-------------------------------------------------------------------
28
Tue Nov 1 11:13:47 CET 2022 - [email protected]
39
- Implemented mising behavior https://github.com/libyui/libyui/issues/45

Diff for: package/libyui-gtk.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818

1919
Name: libyui-gtk
20-
Version: 2.52.4
20+
Version: 2.52.5
2121
Release: 0
2222
Source: %{name}-%{version}.tar.bz2
2323

Diff for: src/YGUI.cc

+2-3
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,7 @@ void YGUI::checkInit()
110110
{
111111
if (m_done_init)
112112
return;
113-
m_done_init = true;
114-
113+
115114
// retrieve command line args from /proc/<pid>/cmdline
116115
YCommandLine cmdLine;
117116
int argc = cmdLine.argc();
@@ -189,7 +188,7 @@ void YGUI::checkInit()
189188
yuiMilestone() << "Style \"" << style << "\" not found. Ignoring style\n";
190189

191190
g_object_unref (provider);
192-
191+
m_done_init = true;
193192
}
194193

195194

0 commit comments

Comments
 (0)