|
|
|
|
@ -89,7 +89,6 @@ void on_process_log_view(GtkWidget *,main_window *widgets){
|
|
|
|
|
g_object_set_data(G_OBJECT(window->Window),"widgets",widgets);
|
|
|
|
|
g_signal_connect(G_OBJECT(window->Window),"destroy",G_CALLBACK(on_log_closed),window);
|
|
|
|
|
gtk_widget_set_sensitive(widgets->ReadFullLogButton,0);
|
|
|
|
|
gtk_widget_set_sensitive(widgets->ReadShortLogButton,0);
|
|
|
|
|
yon_gtk_window_setup(GTK_WINDOW(window->Window),NULL,INSTALL_LOG_LABEL,icon_path,"log_viewer");
|
|
|
|
|
window->command = yon_char_new(short_log_path);
|
|
|
|
|
GFile *file = g_file_new_for_path(window->command);
|
|
|
|
|
@ -103,7 +102,6 @@ void on_summary_log_view(GtkWidget *,main_window *widgets){
|
|
|
|
|
log_window *window = yon_log_window_new();
|
|
|
|
|
g_object_set_data(G_OBJECT(window->Window),"widgets",widgets);
|
|
|
|
|
g_signal_connect(G_OBJECT(window->Window),"destroy",G_CALLBACK(on_log_closed),window);
|
|
|
|
|
gtk_widget_set_sensitive(widgets->ReadFullLogButton,0);
|
|
|
|
|
gtk_widget_set_sensitive(widgets->ReadShortLogButton,0);
|
|
|
|
|
yon_gtk_window_setup(GTK_WINDOW(window->Window),NULL,PROGRESS_LOG_LABEL,icon_path,"log_viewer");
|
|
|
|
|
window->command = yon_char_new(full_log_path);
|
|
|
|
|
|