fix omitting custom sounds
This commit is contained in:
parent
bd73c80152
commit
2550a94f05
@ -2186,6 +2186,8 @@ char *sound_files[NUM_XP];
|
||||
|
||||
void
|
||||
sound_beep (session *sess)
|
||||
{
|
||||
if (!prefs.hex_gui_focus_omitalerts || !fe_gui_info (sess, 0) == 1)
|
||||
{
|
||||
if (sound_files[XP_TE_BEEP] && sound_files[XP_TE_BEEP][0])
|
||||
/* user defined beep _file_ */
|
||||
@ -2194,6 +2196,7 @@ sound_beep (session *sess)
|
||||
/* system beep */
|
||||
fe_beep (sess);
|
||||
}
|
||||
}
|
||||
|
||||
static char *
|
||||
sound_find_command (void)
|
||||
|
@ -671,8 +671,6 @@ fe_beep (session *sess)
|
||||
{
|
||||
char *beepfile;
|
||||
|
||||
if (!prefs.hex_gui_focus_omitalerts || !fe_gui_info (sess, 0) == 1)
|
||||
{
|
||||
#ifdef WIN32 /* keep this in sync with cfgfiles.c! */
|
||||
beepfile = g_build_filename (HEXCHATSHAREDIR, "share", "sounds", "beep.wav", NULL);
|
||||
#else
|
||||
@ -681,7 +679,6 @@ fe_beep (session *sess)
|
||||
sound_play (beepfile, TRUE, TRUE);
|
||||
g_free (beepfile);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
fe_lastlog (session *sess, session *lastlog_sess, char *sstr, gtk_xtext_search_flags flags)
|
||||
|
Loading…
Reference in New Issue
Block a user