summaryrefslogtreecommitdiff
path: root/src/eom-application.c
diff options
context:
space:
mode:
authorLaurent Napias <[email protected]>2019-06-29 10:37:28 +0200
committerraveit65 <[email protected]>2019-07-02 12:54:24 +0200
commit9af2a92113fe00820224b2b16205872713c59e86 (patch)
treee50406b44a0eca71462125c97f74b73c9e3eb7ff /src/eom-application.c
parent0e119e78d43695674a4ca22fa601252e94bf8da0 (diff)
downloadeom-9af2a92113fe00820224b2b16205872713c59e86.tar.bz2
eom-9af2a92113fe00820224b2b16205872713c59e86.tar.xz
Remove trailing whitespaces
Diffstat (limited to 'src/eom-application.c')
-rw-r--r--src/eom-application.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/eom-application.c b/src/eom-application.c
index f49d37c..a46ead7 100644
--- a/src/eom-application.c
+++ b/src/eom-application.c
@@ -333,7 +333,7 @@ static void
eom_application_show_window (EomWindow *window, gpointer user_data)
{
guint32 timestamp = GPOINTER_TO_UINT (user_data);
-
+
/* set the proper interaction time on the window.
* Fall back to roundtripping to the X server when we
* don't have the timestamp, e.g. when launched from
@@ -342,13 +342,13 @@ eom_application_show_window (EomWindow *window, gpointer user_data)
*/
if (!gtk_widget_get_realized (GTK_WIDGET (window)))
gtk_widget_realize (GTK_WIDGET (window));
-
+
if (timestamp <= 0)
timestamp = gdk_x11_get_server_time (gtk_widget_get_window (GTK_WIDGET (window)));
-
+
gdk_x11_window_set_user_time (gtk_widget_get_window (GTK_WIDGET (window)),
timestamp);
-
+
gtk_window_present (GTK_WINDOW (window));
}